Most Interesting concept....!!!!
Quote from tradelink:
here is code for your example :
"XYZ stock crosses $50 within the first 5 minutes, go long with a stop at $49.75 and a target of $50.50"
Code:public class myresponse : ResponseTemplate { decimal LEVEL = 50; int STOPTIME = 93500; OffsetTracker ot = new OffsetTracker(); public myresponse() { // ensure that position is bracketed ot["XYZ"].StopDist = .25m; ot["XYZ"].ProfitDist = .5m; } PositionTracker pt = new PositionTracker(); public override void GotTick(Tick k) { ot.newTick(k); if ((k.trade > LEVEL) && (k.time < STOPTIME) && !pt["XYZ"].isFlat) sendorder(new BuyMarket("XYZ",100)); } } public override void GotFill(Fill trade) { pt.Adjust(trade); ot.Adjust(trade); } public override void GotPosition(Position p) { pt.Adjust(p); ot.Adjust(p); }
This is the difference between having to program or using a robotic system that already does ALL of the work for you
Quote from 6pst6:
Are there any options for traders that want to automate a strategy without having an in depth programming background?

Quote from NetTecture:
But both are not what was asked for. FINDING a strategy is different from allowing one to implement an existing one![]()
Quote from edbar:
Please go to the website for a wealth of information.
If you have questions, send email to customersupport@cool-trade.com
Best Regards,
Ed
CoolTrade CEO
http://www.cool-trade.com
Quote from Member Conduct Rules:
6) Advertisements and solicitations of any kind are strictly prohibited unless you are a paying site sponsor. As a person who does not represent one of our site sponsors, you are not to solicit our members with any type of commercial offer, or advertise your business through your public posts, private messages, profile page, or file attachments. This includes, but is not limited to, posting your phone or fax number(s) and posting any URLs or hyperlinks to your commercial web site(s) or email account(s). Elite Trader and its agents may remove or edit any posted content, without prior notice, that contains unauthorized advertisements or solicitations. Elite Trader may, without prior notice, immediately terminate your membership upon discovery of any unauthorized advertising or solicitation.