I too have been looking at the 4hr TF, All i have changed at this stage islonelytrader » Tue Jan 07, 2014 4:13 pm wrote:I have a hopefully interesting question.
NB 10.6 was designed for 4h trading, but with this version of TCO its running on 1h.
what about actually running it on 4h? I tried playing with the TF in the EA, by moving everything up one level, so 240/10080 and it seems to have less trades but better ROI, any thoughts?
I cant be the only one who thought of trying it out.
extern int Lower_TF = 240;
and i only use the MA Trend Settings to define the trend
extern string Es0 = "-- MA Trend Settings --"; // this is used only on the daily chart so 60/240 from the 4h chart becomes 10/40 on the daily chart.
extern int MA_Fast = 10; // 10=60 on 4Hr and 240 on 1Hr, this is for the MA Ribbon settings
extern int MA_Slow = 40; // 40=240 on 4Hr and 960 on 1Hr, this is for the MA Ribbon settings
extern int MA_MAmethod = 3; // 0 - SMA, 1 - EMA, 2 - SMMA, 3 - LWMA
extern int MA_PriceMethod = 0; // 0 - Close, 1 - Open, 2 - High, 3 - Low, 4 - Median Price, 5 - Typical Price, 6 - Weighted
extern bool MA_Cross = false;
At this stage apart from much lower trade count I have not seen much if any profit advantage.
Les