Forum

Forex Strategy

hey guys, any strategy that I've backtested so far [with EA] hadn't win rate more than 25% ! is it realistic to have 50% win rate in Forex? If yes, how can I achieve it. Thanks

max volume to trade

How much volume is traded every day in a major currency pair like EURUSD or NZDJPY? Can I open a position with 50 or 100 lots? is there such volume in market ? is it possible I get stoploss hunt because I have big lots? so how big can my volume be

double numbers problem

double NORMALIZE( double DOUBLE) { return round (DOUBLE/ 0.01 )* 0.01 ; } VOLUME= MathPow (FACTOR, PositionsTotal ()- 2 )*( MathPow (FACTOR, 2 )- 1 )*P.Volume(); Alert (VOLUME); // result : 0.6333333333333334 Alert (NORMALIZE(VOLUME)); // result : 0.63 VOLUME=NORMALIZE( MathPow (FACTOR

Delete Indicator when EA is running

I have a custom indicator that I want to delete it when some actions happen and add new one with different inputs. Also if its possible just change the input of my indicator. // for example delete the first one and add another one or just modify the first one iCustom ( "GBPUSD" , PERIOD_M1 , "ticks"

ArraySetAsSeries() warning

I have a code and its working but it gives me warning and its too annoying. here is my code: string Symbols[] = { "EURUSD" , "EURJPY" , "GBPUSD" }; ArraySetAsSeries (Symbols, true ); int size = ArraySize (Symbols); for ( int i= 0 ;i<size;i++) { Alert (Symbols[i]); } this is the warning