• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion Create your EA free

Is free?

  • NO

    Votes: 4 30.8%
  • Yes

    Votes: 9 69.2%

  • Total voters
    13
Good for programmer robot that helps with free, there are some expert
needs the cost to the created robot or to modification robot
 
thanks helio I will create a group in telegram for all the serious people that deads its robot we speak by telegram thanks helium for its idea I hope to all serious people in telegram
 
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.

Input :

extern int MagicNumber = 2672;

extern double Target_Final =20000; (all Trade Close if equity reach this target)

extern double TE_Akumulasi_Persen = 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_persen_buy = 0.5; ( if all buy profit reach 0.5% from balance, close all buy)

extern double TP_in_persen_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;
 
Back
Top