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

It does not matter that the same EA may be running on the same symbol and the same timeframe on different charts.

The library provides 8 modes to shift the basic magic number

  • SHIFT_ZERO - in this mode only 1 magic is used in the Expert Advisor (100% guarantee that it will not match other magic numbers)
  • SHIFT_TWO - 4 magic numbers
  • SHIFT_THREE - 8 magic numbers
  • SHIFT_FOUR - 16 magic numbers
  • SHIFT_SIX - 64 magic numbers
  • SHIFT_EIGHT - 256 magic numbers
  • SHIFT_TEN - 1024 magic numbers
  • SHIFT_SIXT - 65536 magic numbers

The greater the shift, the greater the probability of finding matching magic numbers in the terminal.

The library includes a built-in function IsMyMagic, which compares this magic number with the EA's magic number, using magic numbers from the EA's magic range.

IMPORTANT! If you receive a magic number with one of the above parameters (eg SHIFT_THREE), only thos parameter must be passed to the comparison function!

IMPORTANT! Once you close a chart, Magic cannot be restored!

Example of the library can be reviewed in the Test_AutoMagic.mq5 Expert Advisor

AutoMagic

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/17523

IBS_RSI_CCI_v4_HTF IBS_RSI_CCI_v4_HTF

The IBS_RSI_CCI_v4 indicator with the timeframe selection option available in the input parameters

NRTR_extr_ZigZag NRTR_extr_ZigZag

The ZigZag indicator plotted using the NRTR_extr algorithm.

Exp_IBS_RSI_CCI_v4 Exp_IBS_RSI_CCI_v4

Trading system using the IBS_RSI_CCI_v4 indicator

EA High and Low last 24 hours EA High and Low last 24 hours

An example of receiving the High and Low prices of bars over the past 24 hours.