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

Bounce Strength Indicator 2.0 with Tango Line - MetaTrader 4용 지표

조회수:
28628
평가:
(20)
게시됨:
2015.07.20 09:58
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Bounce Strength Indicator (BSI) shows the strength of bounce. It now works in trend and uses Tango Line calculations.

There is no difference in the basic concept, but I tried to remake it from a different angle.

I used the width of the range as a measure to measure (like a classical oscillator). This version does not use the width of the range. It uses the deviation from the center line instead. And the center line is the moving average of the Tango Line.

double ratio=0;
 //--- Bar Spread
 double sp=(high[k]-low[k]);
 //--- Not DownBar
 if(!(close[k-1]-sp*0.2>close[k]))
   {
    ratio=-1*(low[k]/TangoMaBuffer[k])+2;
    sumpos+=(close[k]-low[k])*ratio;
   }
 //--- Not UpBar
 if(!(close[k-1]+sp*0.2<close[k]))
   {
    ratio=-1*(high[k]/TangoMaBuffer[k])+2;
    sumneg+=(high[k]-close[k])*ratio;
   }

Display:

  • Plus histogram — shows the bounce strength up from lows.
  • Minus histogram — shows the bounce strength down from highs.
  • Signal line — difference between plus/minus [ (plus - minus) * abs((plus-minus) / (plus+minus)) ].
  • Blue box — uptrend strength (average of Signal line).
  • Red box — downtrend strength (average of Signal line).
  • Slow Line — average of Signal line (long span).
Chart window is Tango Line (version 1.1).

Bounce Strength Indicator v2.0

Trending:

Bounce Strength Indicator v2.0 trend

Settings:

//--- input parameters
input int InpRangePeriod=20;            // Range Period
input int InpSlowing=3;                 // Slowing
input int InpAvgPeriod=14;              // Avg Period
input bool InpUsingVolumeWeight=true;   // Using TickVolume
input double InpReversalNoiseFilter=5;  // Noise Filter
input  color InpSigColor=DarkSlateBlue; // Signal Color
input  color InpSlowColor=Navy;         // Slow Color

Input Parameters

Tango Line Tango Line

This indicator is a sharp turn to the dynamic change of direction. Like tango steps!

SpreadMIN SpreadMIN

The indicator is a histogram of the lowest/minimum spread only, given in a candle whilst the indicator has been running. Example scripts for placing buy or sell at the lowest spread are included.

Hull Moving Average Hull Moving Average

The Hull Moving Average (HMA) is an extremely fast and smooth Moving Average that almost eliminates lag altogether and manages to improve smoothing at the same time.

News Hour Trade News Hour Trade

Expert Advisor I have developed for News Time Trading (set time and leave it).