Want a trading system? try this.

#1
hi friends
here is trading system.
It has simple rules.
There are two envelopes and price candles.
There is Aceeleration osccilator called AO in lower pane.
There is a video.

Due to net low speed and instability-freezing often- I cant watch the video much.
If anyone is interested,he can try make use of it.

If possible please post rules to follow the system if you can run the video.
Thanks -best regards
Link
http://www.theprofittaker.com/tutorials/power-trading-1/
 
#2
Not watched the vdu, don't know what the system is,

but the Oscillator Code copied from net is . . .

Code:
_SECTION_BEGIN("Acceleration Oscillator");
MADiff = MA(Avg, 5) - MA(Avg, 34);
AC = MA(MADiff - MA(MADiff, 5), 5);
Plot(AC,"AC",IIf(AC>Ref(AC,-1),colorBlue,colorRed),styleHistogram|styleThick);
Plot(0,"",15);
_SECTION_END();

Happy :)
 
#3
HI
here is my try about envelopes part.
The envelopes are auto adjusting to market volatility.


Trading rules
1.when short moves happen
buy when price comes into bottom 2 bands and rises above upper of those.
the buy must coincide with AO oscillator green bar rising above zero line

sell when price comes in between top 2 bands and begin cross below lower band
downwards. The sell must coincide with AO ocillator bar begin red color & go below zero line.
2.when high power moves happen
buy when price cross above topmost upper band, exit long when price falls below top band
sell when price cross below bottom lower band
exit short when price cross above lowermost band.
 

Bewinner

Well-Known Member
#4
HI
here is my try about envelopes part.
The envelopes are auto adjusting to market volatility.


Trading rules
1.when short moves happen
buy when price comes into bottom 2 bands and rises above upper of those.
the buy must coincide with AO oscillator green bar rising above zero line

sell when price comes in between top 2 bands and begin cross below lower band
downwards. The sell must coincide with AO ocillator bar begin red color & go below zero line.
2.when high power moves happen
buy when price cross above topmost upper band, exit long when price falls below top band
sell when price cross below bottom lower band
exit short when price cross above lowermost band.

Ford...what are the envelope parameters u used?
 
#5
Hi Bewinner

Here is the afl code.
Remember this code is not perfect.
Why? For autoadjusting,the width I have used ratio of atr(50)/ma(c,50).
The envelopes are around MA14.
It is not clear whether I need to use ATR(14)/MA(C,14)

It needs finetuning.
regards
ford
HTML:
//the profittarget USE ENVELOPES FIXED PERCENTAGE
//http://www.theprofittaker.com/tutorials/power-trading-1/
//envelopes,ao oscillatror
// ue ma14  deviation 0.10%, and 0.20%  for two bands
grid_day = IIf(Day()!=Ref(Day(),-1),1,0); 
Plot(grid_day,"",colorRed,styleHistogram|styleDashed|styleNoLabel|styleOwnScale);
//Rameessh-- concept average change in price over 50 bars = 100* atr(50)/ma(close,50)

Plot(Close,"close",colorBlue,styleCandle);
/*
WHEN TO Buy WHEN TO Sell
PART1 ANGLE 1
Buy when price bar enters in the midle of lower 2 bands and
ac oscillator goes green just below zero line or above it.
sell when price bar enters in the mid zone of top 2 bands and 
AC oscillator goes red,dceresing from peak or below zero droping more 
PART2 ANGLE2
IN STRONG TREND, 
BUY ABOVE UPPER BAND
SELL BELOW LOWER BAND
*/

KK = 100*ATR(50)/MA(C,50);
_SECTION_BEGIN("Bollinger Bands");
P = Ref(C,-1);//ParamField("Price field",-1);
MA14 =MA(P,14);
Periods = 14;// Param("Periods", 14, 2, 300, 1 );
Width1= 100*(ATR(50)/MA(C,50));
Color = colorBlue;//ParamColor("Color", colorCycle );
Style = styleThick;//ParamStyle("Style", styleLine | styleNoLabel );
CenterLine = MA( P, Periods );
//FIRST SET OF BANDS
Plot( (1 + Width1 * 0.01) * CenterLine, " Top" + _PARAM_VALUES(), Color, Style ); 
Plot( (1 - Width1 * 0.01) * CenterLine, "Bot" + _PARAM_VALUES(), Color, Style ); 
_SECTION_END();

Color2 = colorRed;//ParamColor("Color", colorCycle );
Style = styleThick;//ParamStyle("Style", styleLine | styleNoLabel );
Plot( (1 + Width1 * 0.005) * CenterLine, "Top" + _PARAM_VALUES(), Color2, Style ); 
Plot( (1 - Width1 * 0.005) * CenterLine, "Bot" + _PARAM_VALUES(), Color2, Style );
 
Last edited:

Similar threads