거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
- 조회수:
- 28034
- 평가:
- 게시됨:
- 업데이트됨:
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Author:
http://pipswanted.com
Green lines mean - buy, red signalize sell. Indicator is based on Gann method.
Here is the code:
for(int i=Bars-Back;i>=0;i--) { if(Close[i]>iMA(Symbol(),0,Back,0,MODE_SMA,PRICE_HIGH,i)) { one=1; } else { if(Close[i]<iMA(Symbol(),0,Back,0,MODE_SMA,PRICE_LOW,i)) one=-1; else one=0; } if(one!=0) { two=one; } if(two==-1) { double a = iMA(Symbol(),0,Back,0,MODE_EMA,PRICE_HIGH,i+1) - iClose(Symbol(), 0 ,i+2); red[i] = (iClose(Symbol(), 0 ,i) - a); } else { double b = iClose(Symbol(), 0 ,i+2) - iMA(Symbol(),0,Back,0,MODE_EMA,PRICE_LOW,i+1); green[i] = (iClose(Symbol(), 0 ,i) + b); } }
For more ideas and informations visit:
- http://pipswanted.com
- If you have any questions or problems with trading ask here http://tradersqa.com
Script opening orders
Script opening orders with specified Magic Number
Variations of the Hurst Exponent over time
This indicator displays the variations of the Hurst Exponent which are seen as a predictor of the variations of volatility, therefore giving an indication on when to enter the market.