EURUSD 1 min algo
Forums › ProRealTime English forum › ProOrder support › EURUSD 1 min algo
- This topic has 6 replies, 4 voices, and was last updated 8 years ago by
Stefanb.
Viewing 7 posts - 1 through 7 (of 7 total)
-
-
05/29/2017 at 6:56 PM #36970
Hi, i am new to the forum.
Made a simple algo for EURUSD 1 min.
123456789101112131415161718192021DEFPARAM CumulateOrders = falsedefparam flatbefore =090000defparam flatafter = 210000// Conditions to enter long positionsindicator1 = SuperTrend[10,4]c1 = (indicator1 >= close)indicator2 = RSI[14](close)c2 = (indicator2 < 30)c3 = ADX[130] > 5IF C1 AND c2 AND c3 THENBUY 1 CONTRACT AT MARKETENDIF// Stops and targetsSET STOP pLOSS 19SET TARGET pPROFIT 82 users thanked author for this post.
05/30/2017 at 9:53 AM #3700605/30/2017 at 4:05 PM #3705705/30/2017 at 4:33 PM #3706005/31/2017 at 6:20 PM #37151What spread do you use?
05/31/2017 at 8:04 PM #3715906/02/2017 at 9:09 AM #37272Nicolas
Do you have the opportunity to explain very easily how the WF test works.
Have looked at the following page but do not really understand how to run the WF test in the best way.
https://www.prorealcode.com/topic/how-to-use-prt-walk-foward-test/
-
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)