Skip to main content

Kwik*Pop - KPSnapBack for Amibroker (AFL)

kelvinhand about 13 years ago Amibroker (AFL)

  • Rating:
    2 / 5 (Votes 3)
  • Tags:
    oscillator, amibroker, kwikpop

The indicator describe in http://www.kwikpop.com
PlugIn required : kpami.dll

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("KPSnapBack");



LenDPO = 8;

Len1=8;
Len2=16;
Len3=3;

sw = E_TSKPUPSELL(Open,High,Low,Close,Volume);
KPTriggerLine = tskp_triggerline;
Detrend = KPTriggerLine - MA(KPTriggerLine, LenDPO);	//Detrend KPTriggerLine
Detrend1 = EMA(Detrend, Len1);
Detrend2 = EMA(Detrend, Len2);
KPSnapBack = EMA(Detrend, Len3);

Color = IIf(KPSnapBack > Detrend2, colorBlue, 
        IIf(KPSnapBack < Detrend2, colorRed, colorGrey40));
 
Plot(WMA( KPSnapBack , 6), "Smoothed", colorWhite);

Plot (KPSnapBack, "KPSnapBack", Color, styleHistogram|styleThick);
Plot(0, "", colorDarkGrey);
//--Created by Kelvinhand
_SECTION_END();

7 comments

about 13 years ago

Thanks for this SnapBack Indicator. Do you know what are the values of this indicator for 7500 volume chart?
Also, can you post proper support and resistance lines? These we have in previous afls are not correct.
Thanks a lot
MB
There are two errors in this formula in calculation

almost 13 years ago

Detrend2 should be EMA(Detrend1..)
KP Snapback should be EMA(Detrend,3...)
I am unable to type what I want to say

almost 13 years ago

thanks

please explain PlugIn required : kpami.dll and how is work
my id – senthil_4577@yahoo.com

5. Divyesh
almost 13 years ago

for plug in plz go to this page and download….

http://www.mediafire.com/download/znmwud2jdwt/Foundation+-+Int.rar

6. hmsanil
almost 13 years ago

Hi,

Please post the top indicator and the bottom indicator

Thanks

7. ayuveda
almost 13 years ago

Buchacek, when you are unable to type what you want to say, sir, then you can better type nothing at all! If you think this code is incorrect then tell us why or give us the code that you think is the right one. Or maybe somebody else can give us the correct code if this one is really incorrect…

Leave Comment

Please login here to leave a comment.