거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

Bollinger Bands as Support & Resistance - MetaTrader 5용 expert

게시자:
Mohammed Abdulwadud Soubra
조회수:
11155
평가:
(29)
게시됨:
2017.03.07 17:01
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Bollinger Bands as Support & Resistance Using Pending Orders:

  • It will use the upper BB edge as Sell pending order & lower BB edge to place the Buy pending order.
  • The central SMA line of the BB will be used to close the opened positions as enough.

It is not profitable, it is just an example for coding Forex robots.

It is trading only on time frame 15 minutes as you can see in the code below:

//+------------------------------------------------------------------+
//|   expert OnTick function                                         |
//+------------------------------------------------------------------+
void OnTick()
  {
   BB_UPPER   = iBands(NULL ,PERIOD_M15 ,BB_period ,BB_dev ,0 ,PRICE_CLOSE ,MODE_UPPER ,0);
   BB_SMA     = iBands(NULL ,PERIOD_M15 ,BB_period ,BB_dev ,0 ,PRICE_CLOSE ,MODE_SMA   ,0);
   BB_LOWER   = iBands(NULL ,PERIOD_M15 ,BB_period ,BB_dev ,0 ,PRICE_CLOSE ,MODE_LOWER ,0);
............
.
.
.
  }

You can change the period above from PERIOD_M15 to PERIOD_CURRENT or by using the ENUM_TIMEFRAMES

Recommendations

  • This example is only for coders who are interested in automated trading source codes.
  • Using this example in real account is not recommended.
  • Take care!
MT5 to MT4 Set File Converter MT5 to MT4 Set File Converter

Converts .set files from MT5 format to MT4 format.

Vidya zone Vidya zone

Vidya zone using 3 prices for calculation.

ADXm (vhf adaptive) ADXm (vhf adaptive)

ADXm (vertical/horizontal filter adaptive).

Dsl - DMI oscillator Dsl - DMI oscillator

DSL - DMI oscillator