Traderji.com - Discussion forum for Stocks Commodities & Forex

Automated Mechanical Trading

Discuss Automated Mechanical Trading at the Software within the Traderji.com - Discussion forum for Stocks Commodities & Forex; Try filtered out with MACD...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > TOOLS & RESOURCES > Software

Notices

Software Charting, trading & technical analysis software, trading system development and backtesting.


Advertise Here

Reply
 
Thread Tools
Sponsored Links
  #11  
Old 26th July 2008, 05:50 PM
Member
 
Join Date: Mar 2007
Location: Tirunelveli
Posts: 351
Thanks: 167
Thanked 94 Times in 60 Posts
sikandar will become famous soon enoughsikandar will become famous soon enough
Reputation: 114
Default Re: Automated Mechanical Trading

Try filtered out with MACD
Reply With Quote
Sponsored Links
  #12  
Old 27th July 2008, 10:35 PM
Member
 
Join Date: Jan 2008
Posts: 253
Thanks: 539
Thanked 541 Times in 191 Posts
citrus is a name known to allcitrus is a name known to allcitrus is a name known to allcitrus is a name known to allcitrus is a name known to allcitrus is a name known to all
Reputation: 551
Default Re: Automated Mechanical Trading

Few months back, I started the similar thread (probably failed to find this thread). Some very good replies came from the members of this forum. You can check those at http://www.traderji.com/technical-an...ing-india.html
Regards.
Reply With Quote
  #13  
Old 28th July 2008, 05:07 PM
Member
 
Join Date: Jan 2006
Posts: 4
Thanks: 0
Thanked 1 Time in 1 Post
punchouty is on a distinguished road
Reputation: 21
Default Re: Automated Mechanical Trading

Well, if your programming language is java i can help you a bit. I am having account with www.icicidirect.com and i am using java program to interact with this site, hence getting market data as well as sending orders (using httpclient from apache and parsing html page).

But before that :
I am struggling to get right algorithm. Can some one chip some idea around this, "how does a day trader take decision" at any instance of time. I have created a small "test bed" that can test any strategy on past six month of data (1 min tick data for nifty stocks from bse).

Here is simple java program

HttpClient httpClient = new HttpClient();
HostConfiguration hostConfiguration = httpClient.getHostConfiguration();
hostConfiguration.setHost("secure.icicidirect.com" , 443, "https");
String DATA_URL = "/trading/equity/trading_stock_quote.asp?Symbol=";
String url = DATA_URL + symbol.getSymbol();
PostMethod getMethod = new PostMethod(url);
int statusCode = httpClient.executeMethod(getMethod);
byte[] bytes = getMethod.getResponseBody();
String response = new String(bytes);

now you can parse the html and get data. Similarly you can simulate any post request. e.g. for log in to icici site

String url = "/customer/validlogon.asp?nFile=tradehome";
PostMethod method = new PostMethod(url);
method.addParameter("FML_USR_ID", user);//view source of html page
method.addParameter("FML_USR_USR_PSSWRD", password);
method.addParameter("startin", "1");
byte[] bytes = method.getResponseBody();
Reply With Quote
The Following User Says Thank You to punchouty For This Useful Post:
manishag (13th October 2008)
  #14  
Old 2nd August 2008, 03:10 PM
Member
 
Join Date: Jul 2008
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
ubab08 is on a distinguished road
Reputation: 10
Thumbs up Re: Automated Mechanical Trading

Hi Guys,

Thanks for your replies. Software development is not an issue for me.I have already programmed to get streaming quotes. Any way PIB from indiabulls gives every tick info that is enough for any type of calculations we made. I have developed a tool using Win32 API. So As long as the Trading software(broker's terminal) is going to run in Windows operating system i will not not face any problem. But the trading system to buy/sell scrips must be profit making one.Writing programs for complex indicators,oscillators etc is waste of time(up to my knowledge).I believe in the KISS ( keep it simple, stupid) system.

Now i am following channel break out system for intra day trading. i would not say that n-channel break out system is holy grail. But it suites for intra day trading to some extent. Then you may ask why me here, i am here because most of the day ended in loss. I am testing this automation s/w with less quantity(i did some paper trading also) and not placing bulk orders. Thats why i am still in the market.

If i trade in 10 scrips, it makes 6 profit 4 loss But the loss is always high. I could not ride the wave and also i could not cut the losses. Where to put SL or where to reverse my position still a million dollar question in my mind?.
I know that no can give me the 100% perfect system but at least some ideas i expect from you all to cut losses.


I am new member to this forum. I have posted only one message after i joined. I again thank you all for your reply.

Looking for your reply..
Bye.
Reply With Quote
  #15  
Old 2nd August 2008, 07:34 PM
Member
 
Join Date: Jul 2007
Posts: 93
Thanks: 15
Thanked 30 Times in 16 Posts
joy.edakad will become famous soon enough
Reputation: 50
Default Re: Automated Mechanical Trading

Hi, ubab,

Try Open Range Breakout. It works better on index scrips than index itself. Higher volatility is the reason. You can find more about ORB from here

Make it a starting point for ur TS and add filters etc. to further improve it.

Regards
Reply With Quote
  #16  
Old 10th October 2008, 07:32 PM
Member
 
Join Date: Oct 2008
Posts: 2
Thanks: 1
Thanked 2 Times in 1 Post
richo is on a distinguished road
Reputation: 12
Default Re: Automated Mechanical Trading

Hi ubab

My case is just the opposite. I have a simple and high probability system to follow but do not have skills to develop software to identify scrips before the entry price. I am doing all by manual and missingout many opportunies because of lack of time and also hesitation to pull the trigger. I strongly believe if the system is automated everyday is a net plus. Need someone like you to work on this.

Regards
Richo
Reply With Quote
  #17  
Old 13th October 2008, 04:52 PM
Member
 
Join Date: Oct 2008
Posts: 17
Thanks: 1
Thanked 3 Times in 2 Posts
manishag is on a distinguished road
Reputation: 13
Default Re: Automated Mechanical Trading

Quote:
Originally Posted by punchouty View Post
Well, if your programming language is java i can help you a bit. I am having account with www.icicidirect.com and i am using java program to interact with this site, hence getting market data as well as sending orders (using httpclient from apache and parsing html page).

But before that :
I am struggling to get right algorithm. Can some one chip some idea around this, "how does a day trader take decision" at any instance of time. I have created a small "test bed" that can test any strategy on past six month of data (1 min tick data for nifty stocks from bse).

Here is simple java program

HttpClient httpClient = new HttpClient();
HostConfiguration hostConfiguration = httpClient.getHostConfiguration();
hostConfiguration.setHost("secure.icicidirect.com" , 443, "https");
String DATA_URL = "/trading/equity/trading_stock_quote.asp?Symbol=";
String url = DATA_URL + symbol.getSymbol();
PostMethod getMethod = new PostMethod(url);
int statusCode = httpClient.executeMethod(getMethod);
byte[] bytes = getMethod.getResponseBody();
String response = new String(bytes);

now you can parse the html and get data. Similarly you can simulate any post request. e.g. for log in to icici site

String url = "/customer/validlogon.asp?nFile=tradehome";
PostMethod method = new PostMethod(url);
method.addParameter("FML_USR_ID", user);//view source of html page
method.addParameter("FML_USR_USR_PSSWRD", password);
method.addParameter("startin", "1");
byte[] bytes = method.getResponseBody();
well good option. though it's indirect way to achieve it but as of now this is the only way seems to me
Reply With Quote
  #18  
Old 4th November 2008, 07:46 PM
Member
 
Join Date: Aug 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
psudo is on a distinguished road
Reputation: 20
Default Re: Automated Mechanical Trading

This looks intresting!
Reply With Quote
Sponsored Links

Reply

Bookmarks


Advertise Here


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads for: Automated Mechanical Trading
Thread Thread Starter Forum Replies Last Post
Day Trading, Swing Trading and Position Trading TATrader Trading on Technicals 9 5th June 2007 01:03 AM
Automated forex trading for MetaTrader4 varna 2 Software 0 4th December 2005 11:35 PM


All times are GMT +5.5. The time now is 05:33 PM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.MasterOfTrading.com