I have many (simple) working strategies written in EasyLanguage written for futures. Strategies are no longer than a page of code in length. Anybody want to collaborate let me know. All strategies are intra day from 1 second to 3 minute bars. I do not hold positions over night. I re-optimize parameters about once every 2 weeks. All strategies will degrade as market changes character. Each strategy is customized to instrument being traded.
Guadiana
DrStrangeLove1955
DrStrangeLove1955
DrStrangeLove1955
For Marcos Espirulina: Code was truncated I am reposting. //START OF CODE /1 sec bars. //time is in DAX exchange time zone. Cash hours 0900 to 1640. //this is simplified version of fade the spike strategy, it only shorts up spikes. Inputs:SpikeAmtMin(20),NumBarsInSpike(10), TgtPrcntOfSpike(50), StpPrcntOfTgt(50), TradeBegin(0901),TradeEnd (1630), ExitEod(1635) ; Vars: tgtAmt(0),stpAmt(0); tgtAmt=TgtPrcntOfSpike*SpikeAmtMin/100; //target amount in DAX points (each DAX point is 25 EUROS stpAmt=tgtAmt*StpPrcntOfTgt/100; //stop amount in DAX pointsand is alway less than traget if close[NumBarsInSpike]-Close>=SpikeAmtMin and marketposition=0 and time>TradeBegin and time=entryPrice+stpAmt and marketposition=-1 then buytocover ("StpHit") next bar at market;
if time=ExitEOD and marketposition=-1 then buytocover ("EODEXIT") next bar at market;
//END OF CODE
Jared Broad
Doc / Marcos - you can use internal messaging and project sharing to collaborate privately. Click the "Share" button in your project to share by email, or click the "Inbox" icon in the top-right of the page to send an instant message to a fellow user.
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
James Smith
Doc, I've became fairly familiar with easy language and it's quite straightforward to port to c# (even with complex scripts such as Ehlers' research papers). I've sometimes thought about how feasible an automated porting tool would be and in fact it looks like it's already been done: http://caml.inria.fr/cgi-bin/hump.en.cgi?contrib=575
Unfortunately, this site is down. I wonder if the author has released the source?
DrStrangeLove1955
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
To unlock posting to the community forums please complete at least 30% of Boot Camp.
You can continue your Boot Camp training progress from the terminal. We hope to see you in the community soon!