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

Rule four weeks for Amibroker (AFL)
Tinych
over 12 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 5)
Tags:
trading system, amibroker

Simple Trading System “Rule four weeks.”
The idea was taken from the book of J. Murphy Technical Analysis of Futures Markets. The graph shows one-hour interval.
http://savepic.su/1059699.htm
You can reduce the number of signals by adding the following expression:
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
http://savepic.su/1061747.htm

Similar Indicators / Formulas

All in One
Submitted by Nahid over 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
Arvind' System
Submitted by akdabc almost 14 years ago
Miftha remix for dse
Submitted by coolpace over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();

_SECTION_BEGIN("Rule four weeks");
Buy=Ref(H,-4)<C AND Ref(H,-3)<C  AND Ref(H,-2)<C AND Ref(H,-1)<C; 
Sell=Ref(L,-2)>C AND Ref(L,-1)>C; 
PlotShapes(IIf(Buy, shapeUpArrow , shapeNone), colorGreen);
PlotShapes(IIf(Sell, shapeDownArrow , shapeNone), colorRed);
_SECTION_END();

2 comments

1. morgen

Simple is beautiful!
Thank You

2. sam21

Hi,

Indeed Beautiful…keep it up TINYCH

Thnx a lot for sharing :)

Leave Comment

Please login here to leave a comment.

Back