Automated /algo trading for retail traders

#31
Yes, I have been using their automated trading system for quite some time now. The specialize in index trading, currency trading (all 4 INR pairs) and MCX. One of the very few systems available which is legally approved from NSE and MCX.

The auto trader is run from their dedicated server and hence, we as client don't have to be glued to system all the time. We have to manage our scrips and quantities from a private login area in their website.

Limitation is that it works only on NEST trading platform and they have tied up with broker Master Trust as preferred broker partner.

Worth giving a try even if you have to shift your broker from the existing one,

Cheers
 

mastermind007

Well-Known Member
#36

Algo

Active Member
#39
If you're looking for fully automated, Symphony presto is the right one for you. Their costs are high but if you are a large investor trading huge volumes, the cost should not matter. However, if its the other way around, go for Amibroker
Yes. There cost is quite high. I think 7,500 pm now although i joined with them at 15,000 pm. But when it comes to custom features and automated execution they do not have a competition.
 
#40
_SECTION_BEGIN("swing1");
no=Param( "Swing", 10 , 1, 55 );
//no=20;
res=HHV(H,no);
sup=LLV(L,no);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
supres=IIf(avn==1,sup,res);

Buy=a=Cross(C,supres);
Sell=b=Cross(supres,C);
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes(shape, IIf(Buy,colorBlue,colorRed), 0, IIf(Buy,Low,High));

//Plot(supres,"Swing",colorWhite,styleStaircase,styleThick);
Plot (supres,"Swing",colorRed,styleStaircase+styleDots,styleThick,styleDots);

_SECTION_END();

The above AFL is a very simple swing trading one.
How to modify it as only as a BUY /SELL sequence and never as a SELL/BUY sequence for options trading.
thanks
SRJC
 

Similar threads