Martonosimon
New Member
- Credits
- 0
any body can help me?
Can you make EA from this input? With hedging and martingale.
-First Open Buy and Sell hedging with lots base on “lots” Input.
- If reach “stepLV1” (on pips) then open martingale.
- if buy / sell trade > “Max_OrderLV1” then the pips step change to “StepLV2”
- same as before until LV3.
It base on buy limit and sell limit with step that can be adjust by level and take profit after all buy/sell reach profit
Input :
extern int MagicNumber = 2672;
extern double Target_Final =20000; (all Trade Close if equity reach this target)
extern double TE_Acumulate_Percent = 1.0; (all target Close if equity reach 1% from balance and open again new trade)
extern double Lots = 0.1; (Base lot)
extern double Martingale = 2.0; (if step reach Buy / sell limit, its open with martingale lot)
extern double TP_in_percent_buy = 0.5; ( if all buy profit reach 0.5% from balance, close all buy)
extern double TP_in_percent_sell = 0.5; ( if all sell profit reach 0.5% from balance, close all sell)
extern string LV1 = "";
extern int StepLV1 = 30;
extern int Max_OrderLV1 = 3;
extern string LV2 = "";
extern int StepLV2 = 50;
extern int Max_OrderLV2 = 2;
extern string LV3 = "";
extern int StepLV3 = 70;
extern int Max_OrderLV3 = 2;
Can you make EA from this input? With hedging and martingale.
-First Open Buy and Sell hedging with lots base on “lots” Input.
- If reach “stepLV1” (on pips) then open martingale.
- if buy / sell trade > “Max_OrderLV1” then the pips step change to “StepLV2”
- same as before until LV3.
It base on buy limit and sell limit with step that can be adjust by level and take profit after all buy/sell reach profit
Input :
extern int MagicNumber = 2672;
extern double Target_Final =20000; (all Trade Close if equity reach this target)
extern double TE_Acumulate_Percent = 1.0; (all target Close if equity reach 1% from balance and open again new trade)
extern double Lots = 0.1; (Base lot)
extern double Martingale = 2.0; (if step reach Buy / sell limit, its open with martingale lot)
extern double TP_in_percent_buy = 0.5; ( if all buy profit reach 0.5% from balance, close all buy)
extern double TP_in_percent_sell = 0.5; ( if all sell profit reach 0.5% from balance, close all sell)
extern string LV1 = "";
extern int StepLV1 = 30;
extern int Max_OrderLV1 = 3;
extern string LV2 = "";
extern int StepLV2 = 50;
extern int Max_OrderLV2 = 2;
extern string LV3 = "";
extern int StepLV3 = 70;
extern int Max_OrderLV3 = 2;

