Free Expert Advisor e-PSAR

 

Free Expert Advisor e-PSAR

Conception:

Market Buy if PSAR reversed and appeared below the market

Market Sell if PSAR reversed and appeared above the market

Close orders on StopLoss, TakeProfit, reversed signal

Options:

extern string _tmp1_ = " --- Trade params ---";

extern int AccDigits = 5;

// set 5 for all pairs if you have 5 digits after decimal

// point on EURUSD pair (1.34217 etc.)

// set 4 for all pairs if you have 4 digits after decimal

// point on EURUSD pair (1.3423 etc.)

extern bool SupportECN = false;

// set true for ECN brokers

// true means that sl and tp will be added only after an order open

extern bool AllowLongs = true;

// set true to allow long orders

extern bool AllowShorts = true;

// set true to allow short orders

extern double Lot = 0.1; // lots volume

extern int StopLoss = 100; // StopLoss is 100 pips

// 0 is the same as no StopLoss

extern int TakeProfit = 100;

// TakeProfit is 100 pips

// 0 is the same as no TakeProfit

extern bool ReverseSignals = false;

// swap Buy and Sell signals true/false

extern int Slippage = 3;

// max. permissible slippage value, pips

extern int Magic = 20110422; // unique orders ID

extern string _tmp2_ = " --- Parabolic SAR ---";

extern double PSAR.step = 0.02;

extern double PSAR.maximum = 0.2;

// Parabolic SAR options

extern int PSAR.SignalBar = 0;

// 0: get PSAR signals from open bar

// 1: get PSAR signals from closed bar

backtest

 

e-BJF-PSAR for meta trader 5

robertinno:
Free Expert Advisor e-PSARConception:Market Buy if PSAR reversed and appeared below the marketMarket Sell if PSAR reversed and appeared above the marketClose orders on StopLoss, TakeProfit, reversed signalOptions:extern string _tmp1_ = " --- Trade params ---";extern int AccDigits = 5;// set 5 for all pairs if you have 5 digits after decimal// point on EURUSD pair (1.34217 etc.)// set 4 for all pairs if you have 4 digits after decimal// point on EURUSD pair (1.3423 etc.)extern bool SupportECN = false;// set true for ECN brokers// true means that sl and tp will be added only after an order openextern bool AllowLongs = true;// set true to allow long ordersextern bool AllowShorts = true;// set true to allow short ordersextern double Lot = 0.1; // lots volumeextern int StopLoss = 100; // StopLoss is 100 pips// 0 is the same as no StopLossextern int TakeProfit = 100;// TakeProfit is 100 pips// 0 is the same as no TakeProfitextern bool ReverseSignals = false;// swap Buy and Sell signals true/falseextern int Slippage = 3;// max. permissible slippage value, pipsextern int Magic = 20110422; // unique orders IDextern string _tmp2_ = " --- Parabolic SAR ---";extern double PSAR.step = 0.02;extern double PSAR.maximum = 0.2;// Parabolic SAR optionsextern int PSAR.SignalBar = 0;// 0: get PSAR signals from open bar// 1: get PSAR signals from closed barbacktest

Please help me for e-BJF-PSAR Meta trader 5

Reason: