거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
3733
평가:
(20)
게시됨:
2018.05.22 13:28
업데이트됨:
2018.06.27 11:57
\MQL5\Include\
IniFile.mqh (16.66 KB) 조회
\MQL5\Scripts\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

A library to provide simple storage mechanism for expert advisors and indicators.


Library Functions

//--- If the key is not found, the returned value is NULL.
bool  GetIniKey          (string fileName, string section, string key, T &ReturnedValue)

//--- add new or update an existing key.
bool  SetIniKey          (string fileName, string section, string key, T value)

int   GetIniSectionNames (string fileName, string &names[])
int   GetIniKeyNames     (string fileName, string section, string &names[])

bool  IniSectionExists   (string fileName, string section);
bool  IniKeyExists       (string fileName, string section, string key);

bool  DeleteIniSection   (string fileName, string section);
bool  DeleteIniKey       (string fileName, string section, string key);

The ini file can be saved at any place.


Sample File

'D:\my_orders.ini'

[EURUSD]
orders=4
lots=1.26
time=2018.05.20 21:10:21
comment=sell market
with_trend=false
[USDJPY]
orders=6
lots=3.12
time=2018.05.18 02:46:03
comment=buy market
with_trend=true
WPR Support Resistance WPR Support Resistance

WPR (Williams Percent Range) based support/resistance.

Digital filters - separate Digital filters - separate

A set of digital filters that are always drawn in separate window (due to their nature).

Range Oscillator Range Oscillator

Range Oscillator is an indicator that shows the relative position of median price in the highest high to lowest low range for desired period.

Range Oscillator + Bands Range Oscillator + Bands

Unlike the basic Range Oscillator version, this version uses Bollinger Bands for overbought and oversold conditions assessment.