spotdespot wrote:...
Mmmmm.....I was aiming for more clarity but I am not sure if I succeeded![]()
Cheers,
Dave.
Cheers
Tommaso
spotdespot wrote:...
Mmmmm.....I was aiming for more clarity but I am not sure if I succeeded![]()
Cheers,
Dave.
Nice one Dave. I was about to post something similar.spotdespot wrote:I've got it - the simple version![]()
To match what Steve and others are doing on H1.
If you want to visually track the trades on the charts then change the LWMA's to 960 and 240 and the RSITMA to show H1, but this is not essential as the EA doesn't care, but you will understand the entry points better.
- Setup BASA on H4 as "normal" (Shelley live set for example).
- Change all charts to H1. That's all you need to do.
Cheers,
Dave.
fchaman- No Problem. The changes I referred to are highlighted in BOLD ABOVE .fchaman wrote:Sorry FXTrucker, I am bit slow learner...exactly where in the code you do those changes? Thanks for clarification.
//Fast ma > slow, trend is up & vice versa
extern string tmas="Two MA - 'slowkey'";
extern int FastMaTdTF=240;//) = current chart <<< CHANGE TO 60 FOR H1
extern int FastMaTdPeriod=60;//Zero value disables this ma <<< CHANGE TO 60 x 4=240
int FastMaTdShift=0;//The MA Shift input
extern string tmame="Method: 0=sma; 1=ema; 2=smma; 3=lwma";
extern int FastMaTdMethod=3;
extern string tmaap="Applied price: 0=Close; 1=Open; 2=High";
extern string tmaap1="3=Low; 4=Median; 5=Typical; 6=Weighted";
extern int FastMaTdAppliedPrice=0;
extern int SlowMaTdTF=240; <<<<<< CHANGE TO 60 FOR H1
extern int SlowMaTdPeriod=240; <<< CHANGE TO 240 x 4 = 960
int SlowMaTdShift=0;
extern int SlowMaTdMethod=3;
extern int SlowMaTdAppliedPrice=0;
////////////////////////////////////////////////////////////////////////////////////////
double FastTrendMaVal[3], SlowTrendMaVal;//2 MA trend
string MaTrend;
string MaCrossStatus;//Holds whether the fast MA has been crossed and will be one of the MA cross constants crosslong, crossshort or crossnone
////////////////////////////////////////////////////////////////////////////////////////
extern string sep4a="----------------------------------------------------------------";
extern string mas="----Moving Average Stacking----";
extern bool useMaStackForMainTrade=true; <<< THIS IS FIXED TO H4 SET TO FALSE
extern bool useMaStackForStackTrades=true; <<<< OR CHANGE TO "NULL" IN CODE
extern int FastStackMaPeriod=21;
extern int SlowStackMaPeriod=55;
Hi Dave,spotdespot wrote:Hey FxTrucker - did you read all the previous posts since your last? Your changes in bold do not replicate the setups that Steve and others are using to great success, whilst your results with those changes haven't been great. So given the choice.....
Cheers,
Dave.
Welcome pipstar,pipstar wrote: Hi Dave,
This is my first post here.
Where is Shelley live settings located, (what date?) or which OOTB setting/s need to change to reflect H4 "normal" on H1 charts, please?![]()
![]()
Regards,
Knut
Yes I see I misunderstood and I had asked because my results were so much worse than those reported by others, TX allspotdespot wrote:Hey FxTrucker - did you read all the previous posts since your last? Your changes in bold do not replicate the setups that Steve and others are using to great success, whilst your results with those changes haven't been great. So given the choice.....
Cheers,
Dave.
Entitas wrote:Yes Zolie,
your results basically match mine as well. H4 default settings. Broker Sensus Capital Markets. The ea is struggling from 2 weeks or so, let's see in the next weeks how it will works.
Entitas.