Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Value not changing

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

    Value not changing

    I have a custom value i put on my strategy before running it.

    I want that value to change to 0 if a condition was met, but it just goes back to my custom value after a bar update.

    for ex

    double value = 1000

    if Close[0] < Open[0]
    {value = 0}


    I currently have the value on the "OnBarUpdate" section fwiw
    Last edited by Ousher; 11-30-2022, 07:45 PM.

    #2
    Hello Ousher,

    If your value is in OnBarUpdate it will reset each bar, that is known as a local variable. If you want a variable that does not reset each bar you would use a class level variable:

    Code:
    private double myValue;
    
    protected override void OnBarUpdate()
    {
        if Close[0] < Open[0]
       {myValue = 0}​
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    50 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    69 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X