♥ 0 |
Hi Pete, I watched one of your videos from YouTube (https://www.youtube.com/watch?v=YW8ruMckbEw) about how to set up a Bollinger Bands & RSI Strategy. I set it up the same way you did but for some reason I’m not getting the same results. Can you see where I went wrong? Thanks for all your help, below is the code from the condition wizard with your code from the template you created. input tradeSize = 100; def signal = RSI().”RSI” crosses above 25 and low crosses below BollingerBands().”LowerBand” within 8 bars; def exit = RSI().”RSI” is less than RSI().”RSI” from 1 bars ago and high crosses above BollingerBands().”UpperBand” within 4 bars; addOrder(OrderType.SELL_TO_CLOSE, exit, open[-1], tradeSize, Color.MAGENTA, Color.MAGENTA); RESOLVED
Marked as spam
|
Private answer
Wow, there is so much going wrong here I will need to make a list.
Screenshot shows that I have figured it all out. Was this some sort of IQ test you dreamt up? Did I pass? To summarize.
My recommendation. Don’t mess with the advanced stuff until you have viewed and assimilated the basic and intermediate stuff. Strategies are extremely complex. We cover the entire range and the video you watched was the uber-advanced version. View these in the following order. Then come back to the AutoTrade video and things will make a lot more sense. Thinkorswim Strategy Analysis (article) Thinkorswim Strategy Analysis (video) Thinkorswim Scan to Strategy Conversion
Marked as spam
|
Please log in to post questions.