View Full Version : Slingshot indicator
saschja
12-05-2007, 04:01 PM
Hello,
I've searched all over the forum for a Slingshot indicator and couldn't find one.
Anyone ?
Thanks in advance.
Saschja.
zoltran
12-05-2007, 08:30 PM
Hello Saschja
Slingshot is a pretty broad and over-used term... I can think of about a dozen indicators that have some sort of 'slingshot'.
Can you post some references, pictures etc?
saschja
12-06-2007, 10:18 AM
Hello Saschja
Slingshot is a pretty broad and over-used term... I can think of about a dozen indicators that have some sort of 'slingshot'.
Can you post some references, pictures etc?
Hello Zoltran,
Thanks for reaction.
Below you find a description and a Formula made for Amibroker and a picture.
per=Param("indicator period",7,3,200,1);
Colorhisto=ParamColor("histogram color",colorGreen);
Colorlow=ParamColor("lows momentum color",colorRed);
Chart=ParamStyle("momentum chart style",styleHistogram,maskAll);
Line=ParamStyle("momlow chart style",styleLine,maskAll);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
mom=C-Ref(C,per);
momlo=L-Ref(L,per);
/////////////////////////////////////////////
Plot(MOM,"",Colorhisto,Chart);
Plot(momlo,"",Colorlow,Line);
Plot(0,"",colorBlack,styleLine) ;
//////////////////////////////////////////////////////////////////////////////////
Cond1=C>50 AND ATR(15)>2;
Cond2=momlo> mom AND momlo<0 ;// momlo>mom;
Filter=Cond1 AND Cond2;
AddColumn(C,"close",1.2);
Thanks in advance.
Saschja
saschja
12-06-2007, 10:24 AM
[quote=saschja;21908]Hello Zoltran,
zoltran
12-06-2007, 09:17 PM
Hi Saschja
The formula appears to plot a standard 'Momentum' of the lows over a "Momentum' of the close.
You don't really need a new indicator for this in NT.
You can plot two Momentum Indicators on the same Panel
Change the 1st one to histogram
Select 'Low' for the 2nd one instead of 'Close'
See picture
Also attached a simple indicator that does the two together
saschja
12-15-2007, 01:26 PM
Hello Zoltran,
After studying the Slingshot indicator you wrote and comparing it with the one on my Amibroker trial, I found out they often give the same signal, but sometimes they are not.
Reading over the Amibroker formula which is posted above I saw that there is also the ATR indicator involved.
That will probably give the difference between the two.
Any idea how to put that ATR in the Ninja Slingshot indicator?
Thanks,
Saschja.
zoltran
12-15-2007, 03:33 PM
saschja
The ATR in the amibroker formula is only used for Explore/Reports, nothing to do with the plots.
I'm afraid I can't help
saschja
12-15-2007, 05:24 PM
Thanks anyway.
Saschja.