Yes. Time frame. The comment is a bit misleading; a coder's comments are intended as a memory aid for the coder; I know what I meant.cuzgeorge wrote:This leads me to my first question, please don't shoot me down here, i know it's going to look simple to you, but please, read me through;
the above code refers to A TF for trend confrmation, are you sure it's a TF and not the bar count????Code: Select all
extern int TrendConfirmationCandleTF=15;//Candle for confirming the trend as a trade trigger
God-help me!!!
AA is no part of Eval's system. It is an indi that customarily ships with all my EA's. Experiment with it or not as suites you best. In my experience, traders are inveterate tinkerers and often arrive at solutions far removed from those of the op. The op is one individual; out there are many tinkerers who may or may not be able to move the strategy to a new level.If you're still reading means i'm spared from the lions;
my second is the AllAverages indicator suggested in the code below. I have the indi in the correct folder and i have changed the settings to what i'd like to test. This will obviously filter through to the EA through the icustom command. In your opinion, am i doing more damage by doing this and messing with the symphonie system and your EA, or is it good practice to make changes like this. ? AM i supposed to keep it simple, or is it on good advice to tinker so much.?
Code: Select all
return(iCustom(NULL, 0, "AllAverages_v2.1 cc", tf, price, period, mashift, method, buffer, shift)); }//End double GetAa(int tf, int price, int period, int mashift, int method, int buffer, int shift) double GetAtr()
Both. If a pair needs hedging then it needs hedging. EA regards hedging as applicable to an individual pair, not correlated pairs now.and finally, according to this code above, if for eg, i have a EURUSD position going long at a full point, and a USDCHF position going short for a full point, would the hedge still kick in for both pairs, or does the EA regard these positions as hedged already?Code: Select all
bool IsTradeAlreadyHedged(int index) { /* Trade will already be hedged if: - there is an opposite direction trade open - the opp trade has a lot size x HedgeLotsMultiplier
Couldn't ask your questions one at a time in future could you, pleassssssssseeeeeeeee?