lohavu.blogg.se

Mathmod mql4
Mathmod mql4











  1. #MATHMOD MQL4 SERIES#
  2. #MATHMOD MQL4 FREE#

Return( CopyOpen(symbol,timeframe, 0,count,array)) Returns the amount of copied elements.Ĭopies data of the current chart bars to the two-dimensional array of RateInfo type and returns copied bars amount, or -1 if failed. Arrays must be of the same type, but arrays with type double, int, datetime, color, and bool can be copied as arrays of the same type. The function searches for a specified value in a one-dimension numeric array.Ĭopies an array to another one. Returns the calculation mode for the Stop Out level. Int AccountInfoInteger( ACCOUNT_MARGIN_SO_MODE) String AccountInfoString( ACCOUNT_SERVER)ĭouble AccountInfoDouble( ACCOUNT_MARGIN_SO_SO) Returns profit value of the current account. Returns the number of the current account.ĭouble AccountInfoDouble( ACCOUNT_PROFIT) Returns margin value of the current account. Int AccountInfoInteger( ACCOUNT_LEVERAGE)ĭouble AccountInfoDouble( ACCOUNT_MARGIN)

#MATHMOD MQL4 FREE#

Returns free margin that remains after the specified position has been opened at the current price on the current account.Ĭalculation mode of free margin allowed to open positions on the current account. Returns free margin value of the current account.ĭouble AccountFreeMarginCheck( string symbol, Equity calculation depends on trading server settings.ĭouble AccountInfoDouble( ACCOUNT_FREEMARGIN) Returns equity value of the current account. Returns currency name of the current account.ĭouble AccountInfoDouble( ACCOUNT_EQUITY) String AccountInfoString( ACCOUNT_CURRENCY) Returns the brokerage company name where the current account was registered. String AccountInfoString( ACCOUNT_COMPANY) Returns credit value of the current account. Returns balance value of the current account (the amount of money on the account).ĭouble AccountInfoDouble( ACCOUNT_CREDIT)

#MATHMOD MQL4 SERIES#

Series array that contains tick volumes of each bar of the current chart.ĭouble AccountInfoDouble( ACCOUNT_BALANCE) Int count // number of elements to copy ArraySetAsSeries(Volume,true) ĬopyTickVolume(_Symbol,_Period, 0,count,Volume) Data like datetime represent time, in seconds, that has passed since 00:00 a.m. Series array that contains open time of each bar of the current chart. Int count // number of elements to copy ArraySetAsSeries(Time,true) The current symbol point value in the quote currency.

mathmod mql4

Series array that contains open prices of each bar of the current chart. Int count // number of elements to copy ArraySetAsSeries(Open,true)

mathmod mql4

Series array that contains the lowest prices of each bar of the current chart. Int count // number of elements to copy ArraySetAsSeries(Low,true) Series array that contains the highest prices of each bar of the current chart. Int count // number of elements to copy ArraySetAsSeries(High,true) Number of digits after the decimal point for the current symbol prices. Series array that contains close prices for each bar of the current chart. Int count // number of elements to copy ArraySetAsSeries(Close,true) Ĭop圜lose(_Symbol,_Period, 0,count,Close) The latest known bid price of the current symbol. The latest known ask price for the current symbol. #define OP_SELLSTOP 5 //Pending order of SELL STOP type #define OP_BUYSTOP 4 //Pending order of BUY STOP type #define OP_SELLLIMIT 3 //Pending order of SELL LIMIT type #define OP_BUYLIMIT 2 //Pending order of BUY LIMIT type













Mathmod mql4