国内社区暂时没有人交流过真实策略模型,那么由我来开这个头吧。

avatar
· Views 1,743

国内社区暂时没有人交流过真实策略模型,那么由我来开这个头吧。国内社区暂时没有人交流过真实策略模型,那么由我来开这个头吧。国内社区暂时没有人交流过真实策略模型,那么由我来开这个头吧。

策略模型如下,望大家批评指正。

--------------------------------------------------------------------                                                          
  Tested on EURUSD, H4, 15.02.2009 - 13.02.2019
  Spread: 2.0, Slippage: 0.0, Min distance of stop from price: 5.0
--------------------------------------------------------------------
====================================================================
== Entry conditions
==================================================================== 
LongEntryCondition = (EMA(73) < SMA(94))
ShortEntryCondition = (EMA(73) > SMA(94))
 
 
====================================================================
== Entry orders
====================================================================
-- Long entry
if LongEntryCondition is true {
   if No position is open then Buy at SMA(67) + (0.2 * ATR(78)) Stop;
   Stop/Limit order expires after 1 bars.
 
   Stop Loss = (0.6 * ATR(29)) pips;
 
   // Stop trailing (on close)
   Move Stop to (SMA(94) + (0.6) * ATR(68))) on bar close;
}
 
-- Short entry
if ShortEntryCondition is true {
   if No position is open then Sell at SMA(67) + (-0.2 * ATR(78)) Stop;
   Stop/Limit order expires after 1 bars.
 
   Stop Loss = (0.6 * ATR(29)) pips;
 
   // Stop trailing (on close)
   Move Stop to (SMA(94) + (-0.6) * ATR(68))) on bar close;
}

Disclaimer: The views expressed are solely those of the author and do not represent the official position of Followme. Followme does not take responsibility for the accuracy, completeness, or reliability of the information provided and is not liable for any actions taken based on the content, unless explicitly stated in writing.

Like this article? Show your appreciation by sending a tip to the author.
Reply 1

Leave Your Message Now

  • tradingContest