Learn 100% sure simple tricks to Trade in Intraday

#81
Simple tricks will take your money simply by telling 6 formulas and will ask you to come again with 10k for the next 6 formulas and so on for next 6........ another big racket...... these people...., they will then ask you to practice and then come back to them by which time the trader would have lost a bundle....... I would have lost lots of money, luckily i escaped by stumbling in to Traderji's website..... I am getting to learn lots of things everyday, which honestly none of these so called trainers dont even know or talk about...... Just following Traderji diligently can make one a trader.
 

jsb2012

Active Member
#84
Afl for the above formula enjoy!

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() );

DayH = TimeFrameGetPrice("H", inDaily, -1); DayHI = LastValue (Dayh,1);// Daily high
DayL = TimeFrameGetPrice("L", inDaily, -1); DayLI = LastValue (Dayl,1); // Daily low

numbars = LastValue(Cum(Status("barvisible")));
hts = -33.5;


YHL = ParamToggle("Yesterday HI LO","Show|Hide",1);
if(YHL==1) {
Plot(DayL,"DL",colorDarkBlue,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
Plot(DayH,"DH",colorRed,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
PlotText(" DH " , LastValue(BarIndex())-(numbars/Hts), DayHI, colorBlue);
PlotText(" DL " , LastValue(BarIndex())-(numbars/Hts), DayLI, colorBlue);
}

Buy=C>DayH;
Sell=C<DayL;
S= (DayH-DayL)/2;
SL1=DayH-S;
SL2=DayL+S;

PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);
PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
Plot (SL1, "SL1",colorRed,styleLine,styleThick|styleNoRescale|styleNoTitle);
Plot (SL2, "SL2",colorBlue,styleLine,styleThick|styleNoRescale|styleNoTitle);




SetChartBkColor(colorLightYellow);

_SECTION_BEGIN("ATP");
Atp=ParamToggle("ATP","Off|On",1);
if(Atp==1)
{


DayChange = Day() != Ref(Day(), -1);
AvgTradePrice = Null;
CurDayBars = 0;
CurDayCloseSum = 0;

for (i = 0; i < BarCount; i++)
{
if (DayChange)
{
CurDayCloseSum = C;
CurDayBars = 1;
}
else
{
CurDayCloseSum = CurDayCloseSum + C;
CurDayBars++;
}
AvgTradePrice = CurDayCloseSum / CurDayBars;
}
Plot(AvgTradePrice, "AvgTradePrice",colorPlum,styleDots);
ATP=AvgTradePrice;

_SECTION_END();}

_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]//
FS=Param("Font Size",12,12,100,1);
GfxSelectFont("Arial", FS, 900, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor( ParamColor("Color",colorBlack) );
Hor=Param("Horizontal Position",1000,1000,1000,1000);
Ver=Param("Vertical Position",17,17,17,17);
GfxTextOut(""+C,Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Arial", 8, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor(ParamColor("Color",colorYellow) );
GfxTextOut(""+DD+" ("+xx+"%)", Hor+5, Ver+45 );
_SECTION_END();

HERE IS THE LINK FOR THE FORMULA http://www.traderji.com/technical-analysis/35712-learn-100-sure-simple-tricks-trade-intraday-2.html
 
Last edited:
#85
Re: Afl for the above formula enjoy!

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() );

DayH = TimeFrameGetPrice("H", inDaily, -1); DayHI = LastValue (Dayh,1);// Daily high
DayL = TimeFrameGetPrice("L", inDaily, -1); DayLI = LastValue (Dayl,1); // Daily low

numbars = LastValue(Cum(Status("barvisible")));
hts = -33.5;


YHL = ParamToggle("Yesterday HI LO","Show|Hide",1);
if(YHL==1) {
Plot(DayL,"DL",colorDarkBlue,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
Plot(DayH,"DH",colorRed,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
PlotText(" DH " , LastValue(BarIndex())-(numbars/Hts), DayHI, colorBlue);
PlotText(" DL " , LastValue(BarIndex())-(numbars/Hts), DayLI, colorBlue);
}

Buy=C>DayH;
Sell=C<DayL;
S= (DayH-DayL)/2;
SL1=DayH-S;
SL2=DayL+S;

PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);
PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
Plot (SL1, "SL1",colorRed,styleLine,styleThick|styleNoRescale|styleNoTitle);
Plot (SL2, "SL2",colorBlue,styleLine,styleThick|styleNoRescale|styleNoTitle);




SetChartBkColor(colorLightYellow);

_SECTION_BEGIN("ATP");
Atp=ParamToggle("ATP","Off|On",1);
if(Atp==1)
{


DayChange = Day() != Ref(Day(), -1);
AvgTradePrice = Null;
CurDayBars = 0;
CurDayCloseSum = 0;

for (i = 0; i < BarCount; i++)
{
if (DayChange)
{
CurDayCloseSum = C;
CurDayBars = 1;
}
else
{
CurDayCloseSum = CurDayCloseSum + C;
CurDayBars++;
}
AvgTradePrice = CurDayCloseSum / CurDayBars;
}
Plot(AvgTradePrice, "AvgTradePrice",colorPlum,styleDots);
ATP=AvgTradePrice;

_SECTION_END();}

_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]//
FS=Param("Font Size",12,12,100,1);
GfxSelectFont("Arial", FS, 900, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor( ParamColor("Color",colorBlack) );
Hor=Param("Horizontal Position",1000,1000,1000,1000);
Ver=Param("Vertical Position",17,17,17,17);
GfxTextOut(""+C,Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Arial", 8, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor(ParamColor("Color",colorYellow) );
GfxTextOut(""+DD+" ("+xx+"%)", Hor+5, Ver+45 );
_SECTION_END();

HERE IS THE LINK FOR THE FORMULA http://www.traderji.com/technical-analysis/35712-learn-100-sure-simple-tricks-trade-intraday-2.html



SYNTAX ERROR IN THIS AFL....

And where is the original formula? Link may be wrong.....
 

a1b1trader

Well-Known Member
#86
Re: Afl for the above formula enjoy!

SYNTAX ERROR IN THIS AFL....


Here is the corrected formula.
Cheers
-------------------------------------------

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() );

DayH = TimeFrameGetPrice("H", inDaily, -1); DayHI = LastValue (Dayh,1);// Daily high
DayL = TimeFrameGetPrice("L", inDaily, -1); DayLI = LastValue (Dayl,1); // Daily low

numbars = LastValue(Cum(Status("barvisible")));
hts = -33.5;


YHL = ParamToggle("Yesterday HI LO","Show|Hide",1);
if(YHL==1) {
Plot(DayL,"DL",colorDarkBlue,styleDots|styleNoLine |styleNoRescale|styleNoTitle);
Plot(DayH,"DH",colorRed,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
PlotText(" DH " , LastValue(BarIndex())-(numbars/Hts), DayHI, colorBlue);
PlotText(" DL " , LastValue(BarIndex())-(numbars/Hts), DayLI, colorBlue);
}

Buy=C>DayH;
Sell=C<DayL;
S= (DayH-DayL)/2;
SL1=DayH-S;
SL2=DayL+S;

PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);
PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
Plot (SL1, "SL1",colorRed,styleLine,styleThick|styleNoRescale |styleNoTitle);
Plot (SL2, "SL2",colorBlue,styleLine,styleThick|styleNoRescale|styleNoTitle);




SetChartBkColor(colorLightYellow);

_SECTION_BEGIN("ATP");
Atp=ParamToggle("ATP","Off|On",1);
if(Atp==1)
{


DayChange = Day() != Ref(Day(), -1);
AvgTradePrice = Null;
CurDayBars = 0;
CurDayCloseSum = 0;

for (i = 0; i < BarCount; i++)
{
if (DayChange)
{
CurDayCloseSum = C;
CurDayBars = 1;
}
else
{
CurDayCloseSum = CurDayCloseSum + C;
CurDayBars++;
}
AvgTradePrice = CurDayCloseSum / CurDayBars;
}
Plot(AvgTradePrice, "AvgTradePrice",colorPlum,styleDots);
ATP=AvgTradePrice;

_SECTION_END();}

_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]//
FS=Param("Font Size",12,12,100,1);
GfxSelectFont("Arial", FS, 900, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor( ParamColor("Color",colorBlack) );
Hor=Param("Horizontal Position",1000,1000,1000,1000);
Ver=Param("Vertical Position",17,17,17,17);
GfxTextOut(""+C,Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Arial", 8, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor(ParamColor("Color",colorYellow) );
GfxTextOut(""+DD+" ("+xx+"%)", Hor+5, Ver+45 );
_SECTION_END();


Incase you are still getting the error then visit the link
http://pastebin.com/tQPvARFb
and copy/download the afl from there.
 
Last edited:
#87
:clap:ALL NEW TRADERS

DO Not think in your wildest dreams of attending such stupid seminars,:cool: the only thing you would be thankful is for the coffee/tea, snacks and lunch:lol: ( which you would have paid). So far no one has come out and shown their trading account or contract note. In fact people would have lost money after attending damodaran's simple tricks seminar. People please understand (SIMPLE TRICKS) means to SIMPLY TRICKING YOU IN TO PARTING YOUR HARD EARNED MONEY. IT is a well oiled racket, they pay to appear on regional tamil TV and trick poor ill informed traders that they have COPYRIGHTED the HOLY GRAIL OF TRADING. NOWADAYS this seminar trend has started on KANNADA TV also. GOD ALONE HELP THE SHEEP WAITING IN THE QUEUE TO BE SLAUGHTERED. BEFORE ATTENDING such seminars PLEASE ask the seminar ORGANIZER OR Conductor to show his successful trades and then attend. IT has become a trend to give a few pivot levels, and give little bits and pieces of information on TECHNICALS:D and then create interest in the minds of the people in to attending such money making seminars, where if 25:confused: people attend x 4000 or 5000 rupees per head rakes in a cool lakh, not to mention at the end of the show they would ask you to use their TIPS and SOFTWARES which brings in more money. I Heard that TIPS starts from 2500 to 7000 in certain cases. PLEASE understand why they shout at the top of the voice:clapping: on TV asking you to learn technicals, because when you go there only can they sell their useless services. Please use the forums:clapping: where there are so may who have tread the path and gain from their insight as money or lies cannot buy experience:thumb:.:rofl:
 
#88
PLs go through Traderji and stop following The so called self styled experts on kannada and tamil TV channels who solicit people in to attending their technical teaching classes ( god alone knows how much of technicals can be taught in a day) the only thing you would learn at the end of the day is how smoothly like a pickpocket they took out a cool lakh ( 5000 x 25 people) and you would be kicking yourself.
 
#89
Re: Afl for the above formula enjoy!

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() );

DayH = TimeFrameGetPrice("H", inDaily, -1); DayHI = LastValue (Dayh,1);// Daily high
DayL = TimeFrameGetPrice("L", inDaily, -1); DayLI = LastValue (Dayl,1); // Daily low

numbars = LastValue(Cum(Status("barvisible")));
hts = -33.5;


YHL = ParamToggle("Yesterday HI LO","Show|Hide",1);
if(YHL==1) {
Plot(DayL,"DL",colorDarkBlue,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
Plot(DayH,"DH",colorRed,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
PlotText(" DH " , LastValue(BarIndex())-(numbars/Hts), DayHI, colorBlue);
PlotText(" DL " , LastValue(BarIndex())-(numbars/Hts), DayLI, colorBlue);
}

Buy=C>DayH;
Sell=C<DayL;
S= (DayH-DayL)/2;
SL1=DayH-S;
SL2=DayL+S;

PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);
PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
Plot (SL1, "SL1",colorRed,styleLine,styleThick|styleNoRescale|styleNoTitle);
Plot (SL2, "SL2",colorBlue,styleLine,styleThick|styleNoRescale|styleNoTitle);




SetChartBkColor(colorLightYellow);

_SECTION_BEGIN("ATP");
Atp=ParamToggle("ATP","Off|On",1);
if(Atp==1)
{


DayChange = Day() != Ref(Day(), -1);
AvgTradePrice = Null;
CurDayBars = 0;
CurDayCloseSum = 0;

for (i = 0; i < BarCount; i++)
{
if (DayChange)
{
CurDayCloseSum = C;
CurDayBars = 1;
}
else
{
CurDayCloseSum = CurDayCloseSum + C;
CurDayBars++;
}
AvgTradePrice = CurDayCloseSum / CurDayBars;
}
Plot(AvgTradePrice, "AvgTradePrice",colorPlum,styleDots);
ATP=AvgTradePrice;

_SECTION_END();}

_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]//
FS=Param("Font Size",12,12,100,1);
GfxSelectFont("Arial", FS, 900, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor( ParamColor("Color",colorBlack) );
Hor=Param("Horizontal Position",1000,1000,1000,1000);
Ver=Param("Vertical Position",17,17,17,17);
GfxTextOut(""+C,Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Arial", 8, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor(ParamColor("Color",colorYellow) );
GfxTextOut(""+DD+" ("+xx+"%)", Hor+5, Ver+45 );
_SECTION_END();

HERE IS THE LINK FOR THE FORMULA http://www.traderji.com/technical-analysis/35712-learn-100-sure-simple-tricks-trade-intraday-2.html

Dear friend, Greetings. I am very happy to see this formula but I can't understand the key words b'coz I am new to the market. Can u help me. My e-mail id [email protected].
 
#90
It is amazing that even after so many people replying to the newcomers to be careful, about the G4 technique which is a hoax, still a lot of interest is being generated about the G4 technique ( G4 SNAKE OIL) to the newbie traders in Tamilnadu.

In Bangalore now a days 4 scamsters or technical teachers have emerged on local kannada TV channels who keep selling their own brand of SNAKE OIL. Each of these great teachers spends 10 minutes a day on the same TV channel shouting the virtues of learning by paying them.

One person advocates no stop loss trades, another touts the accumulation/distribution or PSAR method. another just blabbers as to how his tips and seminars have made the world a better place for the lucky few who subscibed to his TIPS or attended the seminars. God alone help such lowlife's. The worst thing is technicals cannot be taught in a 6 hour seminar.

People wake up.....

..The best technique is saving your Ass,:cool: by not falling for such techniques....

Just think of yourself after a year or two and how you will laugh at yourself for being fooled by people who are so cheap to have copied from the internet and claim that it is their discovery at the seminars.

Please ask the seminar guy to show his contract note and not any excel sheet about his winning trades.

How one would wish there was an:clap: RTI sort of method to find out the winning trades, or to view the contract notes of the seminar conducting people. In reality none of these so called masters of the trade have made good money trading and that is why they depend on seminars and other jobs to sustain their livelihood. Some of them would not even be in the income tax paying bracket:lol:
 

Similar threads