Navigator Trading System

Viewing 15 posts - 121 through 135 (of 152 total)
  • Author
    Posts
  • #32495 quote
    kg6450
    Participant
    Average

    Is anyone else running this on their live account?

    So far it has opened positions at 16:00 every day for the last 4 trading days, has anyone else got this?

    #32500 quote
    Eric
    Participant
    Master

    only demo

    4 open

    #32502 quote
    Eric
    Participant
    Master

    only demo 4 open

    V1

    #32597 quote
    Francesco78
    Participant
    Master

    I have activated the strategy v2 on the 13 of april at 17.30 PM and so far it didnt open any position, but if I look at backtest starting from 12 of april I confirm I see 4 orders opened.

    #32611 quote
    GraHal
    Participant
    Master

    Hi Francesco

    I was going to say check the Trades Log link below but this Thread don’t appear to be entering Trades.

    It’s so useful as a central source to answer just the query you have now, but only if data is entered.

    https://docs.google.com/spreadsheets/d/1KDmbbH_BZ8v5toEs661g535GJAXVD5kezXKNcmPSnIg/edit?usp=sharing

    GraHal

    #32619 quote
    Francesco78
    Participant
    Master

    Thank you GraHal

    Will do.

    Francesco

    #33135 quote
    actionjackson
    Participant
    Senior

    Navigator V1 sold 2 of 7 contracts with a nice profit of 721 Euro, the remaining position is 1.400 Euro in profit

    #33138 quote
    mamio
    Participant
    Veteran

    Confirm.

    #33165 quote
    Paris
    Participant
    Veteran

    I have the navigator for daily timeframe and it had great résulte too.

    #33166 quote
    Paris
    Participant
    Veteran

    Results

    #33275 quote
    actionjackson
    Participant
    Senior

    This morning all remaining April long positions closed and all long trades made a profit of over 2.500 Euro! This little algo shows the advantage of average down algos, accumulate cheap and wait patiently until market recover but unfortunately risk is high when this expection doesn’t occur

    #33284 quote
    Eric
    Participant
    Master

    I was thinking of buying some options before the french election when the buy signals was flashing

    Navigator long, pathfinder (1 hour dax) long and a connors rsi i run on daily also long

    i regret i didn´t do it

    maybe next time..

    #33371 quote
    Paris
    Participant
    Veteran

    all positions closed  in nav v1 v2 and daily .

    #34114 quote
    CN
    Participant
    Senior

    V1 opened a short pos today at 9.00 with -10 contracts.
    v2 has not opened anything

    #34514 quote
    Maz
    Participant
    Veteran

    Hi all,

    I took a little look at this. (Thanks @Reiner for the idea.)

    With regard to V2, it appears that the following lines can never run due to the conditions never being true in any case:

    For the long side

    ELSIF monthlyMultiplierLong <> 0 THEN // is never true
      IF (COUNTOFPOSITION + positionSize) <= maxPositionSizeLong THEN 
        BUY positionSize CONTRACT AT MARKET // is never run
    ENDIF

    And for the short side

    ELSIF monthlyMultiplierShort <> 0 THEN // can never be true
      IF (COUNTOFPOSITION + positionSize) <= maxPositionSizeShort THEN 
         //SELLSHORT positionSize CONTRACT AT MARKET // is never run
    ENDIF

    If you comment out those lines you should notice no difference in the curve or final result of your back test.

    I believe what the Reiner was trying to test for here is:

    If the larger position increment according to the monthly multiplier is too big to fit within the maxPositionSize headroom available then if  the smallest (or starting) position increment were added to the total exposure in the maraket and that potential new exposure (sum of existing plus new smaller position) is less than or equal to the maximum allowed then add that smallest possible  increment to our existing exposure. ”

    These are lines 124 to 155.

    The reason why that line would never execute is because it’s not possible for the alternative condition to be true as both are either true or untrue

    // for the long situation monthlyMultiplierLong would always be above or equal to 0
    // so
    (monthlyMultiplierLong > 0) NOR (monthlyMultiplierLong <> 0) // would never be true
    // reverse for the short side

    So in order to make that line actually run (lines 132 and line 151) you’d need to re-write the logic section in one way or another; eg:

    IF monthlyMultiplierLong >= 2 THEN
     // ... try bigger position increment
    ELSIF monthlyMultiplierLong =1 THEN
     // ... try smaller position increment
    ENDIF
    
    // but of course this completely changes the equity curve so question as to whether you'd want it.
    
    
    

    Hope that helps. Happy back testing 🙂

    Maz

    ps will take a look at this a bit more

Viewing 15 posts - 121 through 135 (of 152 total)
  • You must be logged in to reply to this topic.

Navigator Trading System


ProOrder: Automated Strategies & Backtesting

New Reply
Author
author-avatar
Reiner @reiner Participant
Summary

This topic contains 151 replies,
has 37 voices, and was last updated by stockdemon
8 years, 1 month ago.

Topic Details
Forum: ProOrder: Automated Strategies & Backtesting
Language: English
Started: 02/23/2017
Status: Active
Attachments: 29 files
Logo Logo
Loading...