manosgk
manosgk
Friends 2
manosgk
Added topic array out of range in (41,47)
double FastEMAValue[ 2 ], SlowEMAValue[ 2 ], ATRValue[ 1 ], TrendEMAValue[ 1 ], HigherTimeframeEMAValue[ 1 ];      double MACDValueMain[ 2 ], MACDValueSignal[ 2 ]; int copiedFastEMA = CopyBuffer (FastEMAHandle, 0 , 0 , 2
manosgk
Added topic isBuySignal: false macdBuySignal: false isSellSignal: false macdSellSignal: false
if (isBuySignal && macdBuySignal && !LastTradeWasBuy) {      double sl = ask - SLPoints * _Point ;      double tp = ask + TPPoints * _Point ;      Print ("Attempting Buy
manosgk
Added topic function declarations are allowed on global, namespace or class scope only
bool GetSymbolInfoDouble( const string symbol, ENUM_SYMBOL_INFO_DOUBLE property, double &result){           if ( SymbolInfoDouble (symbol, property, result))       {
manosgk
Added topic 'SymbolInfoDouble' - no one of the overloads can be applied to the function call
   int minStopLevel = SymbolInfoInteger ( Symbol (), SYMBOL_TRADE_STOPS_LEVEL );    if (minStopLevel == - 1 )      {        Print ( "Error retrieving minimum stop level" );
manosgk
Registered at MQL5.community