Skip to main content

Swim Index for Amibroker (AFL)

kaiji over 16 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:

As the name of indicator explains it self, It measures the swim of Price. Day Trader may find it very useful as it gives trend reversal in next 2-3 trading.

INTERPATION:

Expect trend reversal or at least consolidation when SI Spikes higher, (for Peak) OR lower, (for bottom), than Relative spikes and turns back. I have found couple of times. The thing called “HING” which appears 1-2 day before the Price reversal and common in Stochastic Oscillator.

Coded by KAILASH K PAREEKINDIA

Screenshots

Indicator / Formula

Copy & Paste Friendly
C1 = Ref ( C , -1 ) ;
O1 = Ref ( O, -1 ) ;
K   = HHV ( ( H - C1 ) OR ( L - C1 ) , 1 ) ;
L   =  C1 * 0.20;
R  =  ATR ( 1 );

SI  =  ( ( C-C1+0.5*(C-O)+0.25*(C1-O1))/R)*(K/L);

Graph0 = SI;

0 comments

Leave Comment

Please login here to leave a comment.