Late Lunch Trade Dax40 strategy

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #209960 quote
    JohnScherJohnScher
    Participant
    Veteran

    This is the short variant, optimized and with an additional filter

     

     

    //-------------------------------------------------------
    // late lunch trade short
    // instrument dax40
    // timezone europe, berlin
    // timeframe 30m
    // created and coded by JohnScher
    //-------------------------------------------------------
    
    
    defparam cumulateorders= false
    defparam flatafter = 213000
    
    
    once ordersize = 0.5
    
    tm = openmonth <> 1 and openmonth <> 3 and openmonth <> 10
    td = opendayofweek >=  1 and opendayofweek <= 5
    tt = time = 133000
    
    c = close < exponentialaverage [6] (close)
    c1 = rsi [14] (close) < 50
    
    
    if tm and td and tt and c and c1 then
    sellshort ordersize contracts at market
    endif
    
    
    set stop %loss 3
    set target %profit 1.5
    Ipsch thanked this post
    late-lunch-short.jpg late-lunch-short.jpg
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Late Lunch Trade Dax40 strategy


ProOrder: Automated Strategies & Backtesting

New Reply
Author
author-avatar
JohnScher @johnscher Participant
Summary

This topic contains 1 voice and has 0 replies.

Topic Details
Forum: ProOrder: Automated Strategies & Backtesting
Language: English
Started: 02/19/2023
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...