Backtest possible downtrend

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #223054 quote
    marco7630
    Participant
    New

    Hi,

     

    How can i backtest the following strategy:

    timeframe(DAILY)

    EMA50=ExponentialAverage[50](Close)

    C1=Summation[12](Close<EMA50)=12
    ATRpercent=100*(AverageTrueRange[14](close))/close
    c2 = ATRpercent>=3
    C3=Close*Average[30](Volume)>7500000

     

    c4= close>open

    C5=(high-close) >= (close- Low)

     

    test = c1 AND C2 AND C3 and c4 and c5
    screener[test]

    If above requirements are met:

    Go short 3 cents below the low of last candle

     

    Exit the trade on the first close above EMA10 (daily)

    Thanks

     

    gr Marco

    #223070 quote
    robertogozzi
    Moderator
    Legend

    Post your topic in the correct forum:
    _ ProRealTime Platform Support: only platform related issues.
    _ ProOrder: only strategy topics.
    _ ProBuilder: only indicator topics.
    _ ProScreener: only screener topics
    _ General Discussion: any other topics.
    _ Welcome New Members: for new forum members to introduce themselves.

    I moved your topic from the ProScreener support.

    Thanks 🙂

    There you go:

    timeframe(DAILY)
    EMA50=ExponentialAverage[50](Close)
    C1=Summation[12](Close<EMA50)=12
    ATRpercent=100*(AverageTrueRange[14](close))/close
    c2 = ATRpercent>=3
    C3=Close*Average[30](Volume)>7500000
    c4= close>open
    C5=(high-close) >= (close- Low)
    //
    Timeframe(default)
    test = c1 AND C2 AND C3 and c4 and c5
    IF test AND Not OnMarket THEN
       SELLSHORT 1 Contract AT (low - 0.3*PipSize) STOP
    ENDIF
    IF OnMarket AND close > EMA50 THEN
       EXITSHORT AT Market
    ENDIF
    #223103 quote
    marco7630
    Participant
    New

    Thanks Roberto

Viewing 3 posts - 1 through 3 (of 3 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

Backtest possible downtrend


ProOrder: Automated Strategies & Backtesting

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by marco7630
2 years, 10 months ago.

Topic Details
Forum: ProOrder: Automated Strategies & Backtesting
Language: English
Started: 10/30/2023
Status: Active
Attachments: No files
Logo Logo
Loading...