
Originally Posted by
forexnoobs
do we need to attach indicators for this or just an EA alone? thanks!
no extra indicators are needed, I have found very good luck with this ea. currently forward testing with other settings, and different variants of Fire bird, in this version of fire bird there are static setting for a couple currency, and have removed them with remark's in the code as to allow me to set my own perimeters.
if like working with FB, PM me with you msn.. maybe we can come up with some strategy's
**Original**
Code:
switch(MagicNumber) {// included by Renato
case 26910: // EURUSD,M30 // optmized 06/03/20
// MA_length=18; // George's setting
// MA_timeframe=30;
// MAtype=0;
// Percent=0.15; // George's setting
// TradeOnFriday=1;
slip=100;
// Lots=0.05;
// TakeProfit=30; // George's setting
// Stoploss=300;
// PipStep=5;
// IncreasementType=0.0;
// DVLimit = 8; // included by Renato
// OpeningHour = 6; // included by Renato
// ClosingHour = 14; // included by Renato
break;
case 25803: // GBPUSD,M30
// MA_length=18;
// MA_timeframe=30;
// MAtype=0;
Percent=0.25;
TradeOnFriday=1;
slip=100;
// Lots=0.05;
// TakeProfit=30;
// Stoploss=100;
PipStep=5;
IncreasementType=0.0;
DVLimit = 8; // included by Renato
OpeningHour = 7; // included by Renato
ClosingHour = 15; // included by Renato
break;
case 26715: // EURCHF,M30 // optmized 06/03/20
MA_length=18;
MA_timeframe=30;
MAtype=0;
Percent=0.1;
TradeOnFriday=1;
slip=100;
Lots=0.05;
TakeProfit=10;
Stoploss=300;
PipStep=7;
IncreasementType=0.0;
DVLimit = 6; // included by Renato
OpeningHour = 6; // included by Renato
ClosingHour = 14; // included by Renato
break;
**My Mods**
Code:
switch(MagicNumber) {// included by Renato
case 26910: // EURUSD,M30 // optmized 06/03/20
// MA_length=18; // George's setting
// MA_timeframe=30;
// MAtype=0;
// Percent=0.15; // George's setting
// TradeOnFriday=1;
slip=100;
// Lots=0.05;
// TakeProfit=30; // George's setting
// Stoploss=300;
// PipStep=5;
// IncreasementType=0.0;
// DVLimit = 8; // included by Renato
// OpeningHour = 6; // included by Renato
// ClosingHour = 14; // included by Renato
break;
case 25803: // GBPUSD,M30
// MA_length=18;
// MA_timeframe=30;
// MAtype=0;
// Percent=0.25;
// TradeOnFriday=1;
slip=100;
// Lots=0.05;
// TakeProfit=30;
// Stoploss=100;
// PipStep=5;
// IncreasementType=0.0;
// DVLimit = 8; // included by Renato
// OpeningHour = 7; // included by Renato
// ClosingHour = 15; // included by Renato
break;
case 26715: // EURCHF,M30 // optmized 06/03/20
// MA_length=18;
// MA_timeframe=30;
// MAtype=0;
// Percent=0.1;
// TradeOnFriday=1;
slip=100;
// Lots=0.05;
// TakeProfit=10;
// Stoploss=300;
// PipStep=7;
// IncreasementType=0.0;
// DVLimit = 6; // included by Renato
// OpeningHour = 6; // included by Renato
// ClosingHour = 14; // included by Renato
break;