Files
Bell-PriceActionWithEma-EA/Experts/EA_ICT_CL/Market.mqh
T
2026-03-10 20:51:27 +07:00

29 lines
1.0 KiB
Plaintext

#ifndef EA_ICT_CL__MARKET_MQH
#define EA_ICT_CL__MARKET_MQH
inline double GetBid(const string symbol) { return SymbolInfoDouble(symbol, SYMBOL_BID); }
inline double GetAsk(const string symbol) { return SymbolInfoDouble(symbol, SYMBOL_ASK); }
inline double GetPoint(const string symbol) { return SymbolInfoDouble(symbol, SYMBOL_POINT); }
inline int GetDigits(const string symbol) { return (int)SymbolInfoInteger(symbol, SYMBOL_DIGITS); }
/** Returns spread in points (ask - bid) / point. */
inline double GetSpreadPoints(const string symbol)
{
const double bid = GetBid(symbol);
const double ask = GetAsk(symbol);
const double pointSize = GetPoint(symbol);
if (pointSize <= 0.0) return 0.0;
return (ask - bid) / pointSize;
}
/** True if terminal, EA and symbol allow trading. */
inline bool IsTradeAllowedNow(const string symbol)
{
if (!TerminalInfoInteger(TERMINAL_TRADE_ALLOWED)) return false;
if (!MQLInfoInteger(MQL_TRADE_ALLOWED)) return false;
if (!SymbolInfoInteger(symbol, SYMBOL_TRADE_MODE)) return false;
return true;
}
#endif