Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Error on first line?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Error on first line?

    The error on the first line says

    line 1 - Expected class, delegate, enum, interface or structure
    lin 0 - ] expected


    [LegacyColorValue = true;]


    { _SHME_Dynamic_SR - draw dynamic s/rlines for the period - periods auto calculated }


    {Programmer: Avery T. Horton, Jr. aka TheRumpledOne}

    inputs:


    iMode("No"), { if "auto" code sets xPeriods, if not "auto" code uses iPeriods}

    iPeriods(05),
    HighColor( red),
    LowColor( blue) ;

    variables:

    xPeriods(60),
    xInterval(0),
    sFirstPass(true),
    HavePrevLines( false ),
    TLHigh( 0 ),
    TLLow( 0 ),
    PushHigh( 0 ),
    PushLow( 0 ),
    OldPushHigh( 0 ),
    OldPushLow( 0 ),
    PrevPushHigh( 0 ),
    PrevPushLow( 0 ) ;


    {first time through}

    if sFirstPass
    then begin

    sFirstPass = false;

    {bar test}

    If bartype = 4
    then xInterval = 94
    else
    If bartype = 3
    then xInterval = 93
    else
    If bartype = 2
    then xInterval = 92
    else
    If bartype = 1
    then begin
    xInterval = BarInterval;
    end; { If bartype = 1 }

    {mode test}

    If iMode <> "Auto" and iMode <> "auto" and iMode <> "AUTO"
    then xPeriods = iPeriods
    else xPeriods = _fPushPeriods(xInterval);

    end; {if sFirstPass}

    {save old values}

    If PushHigh <> PrevPushHigh
    then OldPushHigh = PrevPushHigh;

    If PushLow <> PrevPushLow
    then OldPushLow = PrevPushLow ;

    OldPushHigh = PrevPushHigh ;
    OldPushLow = PrevPushLow ;

    PrevPushHigh = PushHigh ;
    PrevPushLow = PushLow ;

    { high / low for period }

    PushHigh = Highest( H, xPeriods);
    PushLow = Lowest( L, xPeriods) ;

    If PushHigh <> H
    and PushHigh < PrevPushHigh
    then PushHigh = PrevPushHigh;

    If PushLow <> L
    and PushLow > PrevPushLow
    then PushLow = PrevPushLow;

    plot1(PushLow, "PushLow", LowColor);

    plot2(PushHigh, "PushHigh", HighColor);

    #2
    Unfortunately we can not help since this is NOT NinjaScript code.
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    43 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    25 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    162 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X