anybody have traderxbuy-sell-trading-system

amitrandive

Well-Known Member
#3
pl.let us share the afl, if anybody have.. selling by a person for 20k
If you do some good searching , these types of AFL's are freely available on the net.Check sites like w i s e s t o c ktrader.com/..

Also remember there is no Holy Grail out there.So no formula works perfectly all the time in any markets.These companies generally only post the screenshots of hugely successful trades only on trending days.


Take my word for it . On a strong trend day, any trending stock works beautifully with ANY AVERAGE AFL


Good Luck :thumb:
 
Last edited:
#5
Thanks lot for the suggestions sir, if u have the afl kindly help to all traders, becoz many traders are forcing themselves to buy in huge thousands of their own money
 
#6
helo sir
1st who will buy this system in 20000/- why he share here free.
2nd i have this system
i will share here. but i wants stockxray afl if any one have pls share with me
 

suri112000

Well-Known Member
#8
Multi lot trades..........scale out on seeing profits. Reverse the trades ruthlessly upon noticising a reversal. When have a sizable profit shut the system and enjoy.,
Code:
Buy =Cover= Low < Ref( Low, -1 )AND Close > Ref( Close, -1 )AND C>O;
Sell =Short= High > Ref( High, -1 )AND Close < Ref( Close, -1 )AND C<O;
shape=Buy*shapeUpArrow;
SHAPE1= Sell*shapeDownArrow;
PlotShapes(shape,colorGreen,0,IIf(Buy,Low,High));
PlotShapes(SHAPE1,colorRed,0,IIf(Buy,Low,High));

_SECTION_BEGIN("Price1");
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();
 
#9
hi friend
try this code
it plots 4 hrly pivots use 5 min chart
HTML:
/*
plot tomorrows pivots on an intraday database
original code by 
patrickdoherty -
modified it to suit 4 hrly tf--ford 14 jan 2014
intraday pivots
Description:

I had been struggling with the code to Plot todays pivots from yesterdays price when using an intraday database. There were none available in the Amibroker library which plotted correctly the pivots for tomorrow on a intraday database. I checked the Amibroker forum AND found the following. Thank you goes to sdebu_2k. if you wish to go to the forum search for "plotting tomorrow pivots". This routine provides todays quotes in the Title bar AND holds the todays pivots constant in the Title bar as well. The plotted pivots moves to the next Day when entering into the next Day. Absolutely brilliant! Thank you. 

Formula:
*/

SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g,
Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +"
{{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

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

H1=( TimeFrameGetPrice( "H", 4*inHourly, -1 ));
L1=(TimeFrameGetPrice( "L", 4*inHourly, -1 ));
C1=(TimeFrameGetPrice( "C", 4*inHourly, -1 ));

/*PIVOT Calculation*/
p = ( H1+ L1 + C1 )/3;
s1 = (2*p)-H1;
r1 = (2*p)-L1;
s2 = p -(H1 - L1);
s3 = S1 - (H1-L1);
r2 = p +(H1 - L1);
r3 = R1 +(H1-L1);

Plot (p,"Pivot 4hrly",25,1);
Plot (r1,"R14h",12,1);
Plot (r2,"R24h",12,1);
Plot (r3,"R34h",12,1);
Plot (s1,"S14h",3,1);
Plot (s2,"S24h",3,1);
Plot (s3,"S34h",3,1);
good luck
ford

regards[/B]
---------------------------------------------------------------------



Respected Sir

USE PATTERN EXPLORER--- I THINK THIS PIC SCREEN SHOT FROM PATTERN EXPLORER--THIS IS PIVOT POINT TRADING.............

WARM REGARDS
CHINMAY
 
Last edited:

Similar threads