- Search Energy EXCH
-
TallCoolOne replied Apr 3, 2011Hi Steve, I don't know if this is by design. But in backtesting. The L3 trades are closing but the other recovery L1 and original trade is staying open. So we get a lot of L2 closures and we never get to L3. Thanks - TCO.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Apr 3, 2011Hi Steve, I will put it through the wringer. Thanks - TCO.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Apr 2, 2011I think the beauty of TOB is that it takes care of everything for you. Yes there is drawdown and recovery events, but when you look how everything is covered and all contingencies are covered, i think it is almost a set and forget, eventhough i ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Apr 1, 2011filtering the trade once we hit the outside magenta line — Hi Guys, I was thinking about this touch concept in trying to determine/filter a better time to enter the trade once we bounce on the top/bottom sixth line. I was looking at an ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Apr 1, 2011Thanks for your hard work diligence Steve. I have been back testing the latest version trying out the CTS/RCTS/Pippo recovery ratio and it all seems to be working as designed. I will update my demo account with the latest and forward test. It seems ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 31, 2011Hi Steve, At least recovery is working like it did before. I still don't think the candle TS is working correctly for recovery. It seems to be closing the trade all the time on the first bar that touches the breakevenline after the red line has been ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 31, 2011Great...I will test it. Thanks.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 31, 2011Hi Steve, I don't if this would happen for everyone, but this code was bouncing me out also. if (OBJPROP_COLOR != RecoveryStopLossLineColour) return; When I changed it to this. I was fine: if (ObjectGet(breakevenlinename, OBJPROP_COLOR) != ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 31, 2011Thanks..I have put a bunch of print statements in the program and I have commented out the return on ticketno. I'm going to see how this thing is really working....I will report back on what the prints tell me.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 31, 2011Bounced out of RecoveryCandlesticktrailingStop — Hi Steve, I'm testing on visual mode and I'm getting bounce out of the RecoveryCandlesticktrailingStop function. I put a print in the EA to look at TicketNo Print("TicketNo = ",TicketNo); The ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Okay I added that ObjectDelete and something is still not right. I attached my results graphs for after and before testing. It looks like recovery works sometimes but not all the time. Hmmmmm.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Hi Steve, I think we need to add this line when we close all trades in the RecoveryCandlesticktrailingStop() function. ObjectDelete(recoverystoplosslinename); TCO
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Hi Steve, I ran a backtest on EURUSD in visual mode. When the recovery trade happened the price hit the blue line and turned it red, but no trailing SL occurred after that. I can take a peak at the code, but can't promise any bloop findings. TCO
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Sorry..I meant Sells....geez.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011CandleStick TS logic flaw — Hi Steve, I was doing some backtesting in visual mode and notice that the buys were not getting their candlestick TS set. I think this like should be changed: if (OrderStopLoss() > high && high - Bid >= stoplevel && ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Sorry guys, I should explain in my backtesting, that I ran 2 test for each pair. The first test set CandleTS = True and AutoCalcTradeClosure = False and all the TradeCloseAtGold,Green,White = False The second test set CandleTS = False and ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Steve, did you code the Candle TS for recovery already. Let me know and I will start a new batch of backtesting? I have almost completed all my backtesting for the first Candle TS enhancement and it looks like on a whole it does make the bot more ...
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 30, 2011Sounds like a great idea. We can get juice from the squeeze. Milk it baby. This bot is really good.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 29, 2011My bad Steve, we might want to define it as double and not int also. Thanks - TCO.
Sixths trading - an EA by macman, Bob and Steve mk 2
-
TallCoolOne replied Mar 29, 2011candle stick TS error — Hi Steve, I think this code in your Candle Stick TS function needs to be changed. int stoplevel = MarketInfo(Symbol(), MODE_STOPLEVEL); to this: int stoplevel = MarketInfo(Symbol(), MODE_STOPLEVEL) * Point;
Sixths trading - an EA by macman, Bob and Steve mk 2