CODING REQUEST -- coding price action "nial fuller's "setup

#1
hello

i am requesting coders to code following nial fuller's setups . the description of which is as under

1) Fakey Trading Strategy (Inside Bar False Break Out) ;-

The Fakey pattern can be best be described as a “false-breakout from an inside bar pattern”. The Fakey pattern always starts with an inside bar pattern. When price initially breaks out from the inside bar pattern but then quickly reverses, creating a false-break, and closes back within the range of the mother bar or inside bar, we have a fakey pattern.

further details can be seen from

http://priceaction.com/price-action-university/strategies/fakey/

2)Pin Bar and Inside Bar Combo Trading Strategy
Pin bar and Inside bar Combo Patterns

A pin bar is a price action strategy that shows rejection of price and indicates a potential reversal is imminent. An inside bar is a price action strategy that shows consolidation and that a potential breakout is imminent. These two signals, when combined, result in either a ‘pin bar combo’ pattern or an ‘inside bar – pin bar combo’ pattern.

Pin bar and inside bar combination patterns are some of the most potent price action signals you will encounter. There are two main ‘combo patterns’ you should focus on learning.

a) The pin bar + inside bar combo, consists of a pin bar that consumes a small inside bar toward the nose of the pin (the pin bar’s real body).

b ) The inside pin bar combo setup is simply a pin bar that’s also an inside bar. In other words, a pin bar that’s within the range of an outside bar or mother bar.
further details can be seen on the following site
http://priceaction.com/price-action-university/strategies/pin-bar-inside-bar-combo/


my requirements --- the afl should plot as well as scan both the above setups . the respected coders can use imagination to highlight the bars by encircling them or putting an asterisk or by any other means to highlight the setups as aesthetically nice as possible .


best regards


sumit
 

maneverfix

Well-Known Member
#4
:lol:

Nothing as . . . "Respect" . . . already PAID . . . . . . :rofl:

There are dozens of AFL requests in this forum, and this is a open forum, the setups posted by Sumit are open to all and similarly AFL created will also be open for everyone. Some one gets the idea and everyone gets benefit.
 
#5
There are dozens of AFL requests in this forum, and this is a open forum, the setups posted by Sumit are open to all and similarly AFL created will also be open for everyone. Some one gets the idea and everyone gets benefit.
If you truly believe in openness then why not accept little humor in the same spirit of openness :D


Thanks
 
#6
Hehehe, I can see bnftrader and I are on the same wavelength :)

That being said : what's the point in using amibroker if one doesn't bother learning some afl?
 
Last edited:
#8
Interesting allegory but not applied properly.

Amibroker provides a set of tools to perform explorations, backtesting, walk forward, customization etcetc. These things are useless of one doesn't bother learning some programming.

If it is a charting software that is rewuired: metatrader or others can do the trick.
I run metatrader concurrently to amibroker sometimes and there are many EAs available for free that do not need to be translated into afl. (makes life simpler)

In short: u don't need to play cricket to watch it, certainly. But asking someone else to code an entire thing is like asking someone to switch on the TV, make you a drink and fan you while you enjoy watching a good game ;)
 
#9
hello

i am requesting coders to code following nial fuller's setups . the description of which is as under

1) Fakey Trading Strategy (Inside Bar False Break Out) ;-

The Fakey pattern can be best be described as a “false-breakout from an inside bar pattern”. The Fakey pattern always starts with an inside bar pattern. When price initially breaks out from the inside bar pattern but then quickly reverses, creating a false-break, and closes back within the range of the mother bar or inside bar, we have a fakey pattern.

further details can be seen from

http://priceaction.com/price-action-university/strategies/fakey/

2)Pin Bar and Inside Bar Combo Trading Strategy
Pin bar and Inside bar Combo Patterns

A pin bar is a price action strategy that shows rejection of price and indicates a potential reversal is imminent. An inside bar is a price action strategy that shows consolidation and that a potential breakout is imminent. These two signals, when combined, result in either a ‘pin bar combo’ pattern or an ‘inside bar – pin bar combo’ pattern.

Pin bar and inside bar combination patterns are some of the most potent price action signals you will encounter. There are two main ‘combo patterns’ you should focus on learning.

a) The pin bar + inside bar combo, consists of a pin bar that consumes a small inside bar toward the nose of the pin (the pin bar’s real body).

b ) The inside pin bar combo setup is simply a pin bar that’s also an inside bar. In other words, a pin bar that’s within the range of an outside bar or mother bar.
further details can be seen on the following site
http://priceaction.com/price-action-university/strategies/pin-bar-inside-bar-combo/


my requirements --- the afl should plot as well as scan both the above setups . the respected coders can use imagination to highlight the bars by encircling them or putting an asterisk or by any other means to highlight the setups as aesthetically nice as possible .


best regards


sumit

Any one who knows coding pl help
 
#10
this is for Fakey without Pin
Code:
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 ) ) )); 
_N( Title = Title +"\n" + _DEFAULT_NAME() ); 

Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 


 Buy = (Ref(L,-1) >= Ref(L,-2)) AND (Ref(H,-1) <= Ref(H,-2)) AND Low < Ref(Low,-1) AND Low < Ref(Low,-2) AND Close > Ref(Low,-1) AND Close > Ref(Low,-2);

Sell = (Ref(L,-1) >= Ref(L,-2)) AND (Ref(H,-1) <= Ref(H,-2)) AND High > Ref(H,-1) AND High > Ref(H,-2) AND Close < Ref(H,-2) AND Close < Ref(H,-1);


PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorBlue,0,Low,Offset=-15);

PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorBlack,0,Low,Offset=-15);
 

Similar threads