Any one have this afl

XRAY27

Well-Known Member
#21
jitensingh,

already i explained that strategy base,But i don't have idea to create afl.

Because after some days you will again come with another one paid afl.

I think now a days paid afl marketing turnover is more then NSE turnover :rofl: [Seriously in TN, most tv channels Offering BUY SELL Software programs for marketing]
Sirji,

You promoted this AFL called JACKPOT...
http://www.traderji.com/amibroker/59785-new-jackpot-systems-buy-sell-nifty.html
Now you also laughing at paid AFL's!!!!!!!!!!:rofl::rofl::rofl:

off course you are good in TA

One thing is sure that ...."“The illusion of randomness gradually disappears as the skill in chart reading improves.” – John Murphy

which is also my Signature
 
Last edited:

laotze

Active Member
#23
Sirji,

You promoted this AFL called JACKPOT...
http://www.traderji.com/amibroker/59785-new-jackpot-systems-buy-sell-nifty.html
Now you also laughing at paid AFL's!!!!!!!!!!:rofl::rofl::rofl:

off course you are good in TA

One thing is sure that ...."“The illusion of randomness gradually disappears as the skill in chart reading improves.” – John Murphy

which is also my Signature
He has already completed his (AFL Selling) project...so,he is laughing now....
 
#24
He has already completed his (AFL Selling) project...so,he is laughing now....
Dear laotze,

i am not sold any afl,Only sold auto update live charts.(i took subscription fee only for Data feed + server maintains)

but i stopped that work,Because after some modification that the same system gave good returns in crudeoil.

still i am following the crudeoil swings.If i have get good returns from my trade then why i want to share my strategy.

Again read my update : If it's give good return then no one ready to share at least the Image too....

Yes now i am not ready to share the image too.
 
#25
The main thing is "All swing trading system gave good returns in Quarterly or yearly in net result"

But problem is every one only searching for "which one system give all trades in profit"..
 

laotze

Active Member
#26
Dear laotze,

i am not sold any afl,Only sold auto update live charts.(i took subscription fee only for Data feed + server maintains)

but i stopped that work,Because after some modification that the same system gave good returns in crudeoil.

still i am following the crudeoil swings.If i have get good returns from my trade then why i want to share my strategy.

Again read my update : If it's give good return then no one ready to share at least the Image too....

Yes now i am not ready to share the image too.
Don't take it seriously.
 
#27
As a trader almost everyone of us who are in the phase of “the search of holy grail” could have tried exploring the so called PAID indicators and often ends with wrong indicators which has no edge in the market. Probably 98% of the PAID indicator providers are snakeoil vendors who polish a open source code by changing the color of the indicators and some little tweaks in the codings and parameters and present it as a colorful, exotic future forecasting stuff by guaranteeing enormous amount of returns (Most of the times it beats Warren Buffets CAGR record).

If you are still in the stage here are some of the ways where you can protect yourself from end in wrong hands

1)Ask the PAID indicator provider to provide backtest report for the past 5 years for your favorite instrument which you are willing to trade. Most of the snakeoil vendors dont even have enough data.

2)Take a Demo of the PAID indicator and backtest yourself (or ask him to backtest in-front of you) across your favorite timeframes you are willing to trade. Make sure you are adding all the trading cost(Brokerage, Slippage, Turnover Charges…etc). Most of the cases the snake oil vendors doesn’t have enough skill to do even a simple backtest.

3)Observing a trading system live for 3 days or a month will not going to help you to fully understand the nature of the trading system. And if you are going to judge the system based on the short span results of-course you are making a big mistake.

4)If the PAID indicator provider is going to backtest only for the past month with 15 or 20 trades and claiming more than 75% winning ratio and probably you insist him to provide results for last 500 trades or last 1000 traders. Only observing a huge number of trades can give you an overall idea of the trading strategy performance across different style of markets(Bullish,Bearish, Sideways) and its riskiness involved in trading it.

5)If the PAID indicator provider is showing your only the snapshots of the indicator which shows that it predicted the future perfectly then you have the repeat the steps 1-4 again. Most of the cases if he is guaranteeing you a sure shot returns after trading his system then most probably he is a snake oil vendor.

6)The one who is not speaking about losses or risk involved in a trading system is a snake oil vendor. Neither you are not interested in understanding the risky nature of the trading system nor the PAID indicator provider doesn’t want to reveal you the risk involved or dont have sufficient knowledge to explain you the riskiness in the trading system.

7)Its quite easy to figure out a snake oil vendor who generally show various charts that made huge profits with their contact numbers embedded over the charts.

8)Now there are enough snake oil vendors entering into the Algo trading segments as newbie traders feels the algo trading can be the real money making machine as it can forecast better than him. He feels he can sit back and relax , do shopping ,concentrate on his day job or attend family functions during trading hours. Which is ideally not going to be that easy unless you have enough experience with Statistics, Programming, Understanding the nature of Market dynamics and of course Trading Experience.

source- marketcalls.in
 
#28
Do UNDERSTAND that all these people sell what is already there on the net for free ....

They show charts @ EOD and cleverly choose the charts which were gainers for the day...

If Cipla or Tatasteel was up 4% today .... they will take a screen shot of that chart today and show it .......

Believe me .... I have tried all of them ... ITS ALL CRAP

Cheers
 
#30



PHP:
_SECTION_BEGIN("Heiken Ashi Smoothed");
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),ParamColor("BgBottom", colorBlack),ParamColor("Titleblock",colorLightGrey ));
SetChartOptions(0,chartShowArrows|chartShowDates);
GraphXSpace=5;

p=Param("Period",6,2,30,1);
Om=MA(O,p);
hm=MA(H,p);
lm=MA(L,p);
Cm=MA(C,p);

HACLOSE=(Om+Hm+Lm+Cm)/4;
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( Hm, Max( HaClose, HaOpen ) );
HaLow = Min( Lm, Min( HaClose, HaOpen ) );

res=HHV(Hm,4);
sup=LLV(Lm,4);
tsl=IIf(ValueWhen(IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0))!=0,IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0)),1)==1,sup,res);

Plot(tsl, _DEFAULT_NAME(), colorWhite, styleStaircase);
Buy = Cross(C,res) ;
Sell = Cross(sup,C) ;
_SECTION_END();


Candlecolor=IIf(Haclose>Haopen,colorGreen,colorRed);
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "" + Name(), candlecolor, styleCandle | styleNoLabel );
 

Similar threads