|
Help
Can anyone hhelp me with this, i would be most grateful if anyone can.
here is everything you'll need
it's gon be the best EA when it's ready
Indicators
Gann_hilo_activator 4HR-------for confirmation of overall trend
Gann_hilo_activator 1HR-------for signal
5 simple moving averages (SMA)—for determining the point of entry
Entry signals
Buy signal (1)
If the price opens above the Gann_hilo_activator 1HR and the Gann_hilo_activator 4HR confirms the trend, then buy if the value of 5 SMA is greater than or equal (≥) to the price.
Buy signal (2)
If the Buy signal (1) condition still holds and the price retraces by a predetermined number of pips then buy another lot e.g. for EUR/USD =32pips.
Sell signal (1)
If the price opens below the Gann_hilo_activator 1HR and the Gann_hilo_activator 4HR confirms the trend, then sell if the value of 5 SMA is less than or equal (≤) to the price.
Sell signal (2)
If the Sell signal (1) condition still holds and the price retraces by a predetermined number of pips then sell another lot e.g. for USD/CAD=46pips.
Exit signals
Close Buy signals
If the price opens below the Gann_hilo_activator 1HR
Close sell signals
If the price opens above the Gann_hilo_activator 1HR
External parameters
By default
--------------------------
Trailing stops =
Stop loss =
Take profit =
extern double Lots = 0.01; // I trade a microlots using a mini account
extern int Slippage = 3;
extern bool StopLossMode = True;
extern int StopLoss = 17; //
extern bool TakeProfitMode = false;
extern int TakeProfit = 60;
extern bool TrailingStopMode = True;
extern int TrailingStop = 37;
Money management code not risking more than 1.2% on one pair of currency at a time and maximum amount of capital at risk is 10%
Gann_hilo_activator 4HR-------for confirmation of overall trend
Gann_hilo_activator 1HR-------for signal
5 simple moving averages (SMA)—for determining the point of entry
my_EA_@_my_own_risk
Hello sir, this is my system that I use and will like to turn in into an EA
Indicators
Gann_hilo_activator 4HR-------for confirmation of overall trend
Gann_hilo_activator 1HR-------for signal
5 simple moving averages (SMA)—for determining the point of entry
Entry signals
Buy signal (1)
If the price opens above the Gann_hilo_activator 1HR and the Gann_hilo_activator 4HR confirms the trend, then buy if the value of 5 SMA is greater than or equal (≥) to the price.
Buy signal (2)
If the Buy signal (1) condition still holds and the price retraces by a predetermined number of pips then buy another lot e.g. for EUR/USD =32pips.
Sell signal (1)
If the price opens below the Gann_hilo_activator 1HR and the Gann_hilo_activator 4HR confirms the trend, then sell if the value of 5 SMA is less than or equal (≤) to the price.
Sell signal (2)
If the Sell signal (1) condition still holds and the price retraces by a predetermined number of pips then sell another lot e.g. for USD/CAD=46pips.
Exit signals
Close Buy signals
If the price opens below the Gann_hilo_activator 1HR
Close sell signals
If the price opens above the Gann_hilo_activator 1HR
External parameters
By default
--------------------------
Trailing stops = 17
Stop loss = 37
Take profit = false
extern double Lots = 0.01; // I trade a microlots using a mini account
extern int Slippage = 3;
extern bool StopLossMode = True;
extern int StopLoss = 17; //
extern bool TakeProfitMode = false;
extern int TakeProfit = 60;
extern bool TrailingStopMode = True;
extern int TrailingStop = 37;
Money management code not risking more than 1.2% on one pair of currency at a time and maximum amount of capital at risk is 10%
|