Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

SAR ( Stop & Reverse ) for Amibroker (AFL)
niladri
about 12 years ago
Amibroker (AFL)

Rating:
2 / 5 (Votes 4)
Tags:
amibroker

This SAR ( Stop & Reverse ) System rules are very simple for trading.

After hitting SAR value [Long/Short] you can reverse the trade with 20-30 point stoploss and hold until next reverse SAR value get’s breach.

For target’s use next MID pivots ( towards the direction of the trade ).

A Toggle parameter is given to clear the SAR lines from chart when not reqd.

Screenshots

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN(" 5DMA-SAR ");
// IF SAR LINE is constant for more than 2 days, this indicates either Accumulation/Distribution //
// IF SAR levels are rising on daily basis this signifies consistency of the current trend //

FS=Param("Font Size",30,11,100,1);
GfxSelectFont("Times New Roman", FS, 700, True ); 
GfxSetBkMode( colorWhite );  
GfxSetTextColor( ParamColor("Color",colorBlue) ); 

Hor=Param("Horizontal Position",700,1,1200,1);
Ver=Param("Vertical Position",1,1,830,1); 

TC=TimeFrameGetPrice("C",inDaily,0);
YYC=TimeFrameGetPrice("C",inDaily,-1);
DFYC=TimeFrameGetPrice("C",inDaily,-2);
DFYC1=TimeFrameGetPrice("C",inDaily,-3);
DFYC2=TimeFrameGetPrice("C",inDaily,-4);
SAR1=Prec((TC+YYC+DFYC+DFYC1+DFYC2)/5,0);
GfxTextOut("SAR="+SAR1, Hor , Ver );

SaaR = ParamToggle("SAR","Show|Hide",1);
if(SaaR==1)  
{
Plot (SAR1,"",colorBlue,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
}
_SECTION_END();

6 comments

1. niladri

The image attached is wrong … please check the correct image here: http://www.wisestocktrader.com/indicators/2705-true-price-action-indicator

2. Kabir
niladri

plz post the comple afl…………

3. classy

The image attached is wrong … please check the correct image here: http://www.wisestocktrader.com/indicators/2705-true-price-action-indicator//how funny ..you told earlier post n result is same no correct image..why this colavori D

4. rajathtrader

Niladri please check before posting anything
dont waste others time

5. administrator

@rajathtrader formula and description match mistakes happen…relax its a free formula

6. abdalelah

where the image

Leave Comment

Please login here to leave a comment.

Back