Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multiple by a decimal

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

    Multiple by a decimal

    I would like to be able to multiply by a decimal. In the code the range needs to be multiplied by a decimal (.618 for example) to give the price which the limit order will be set. How can I replace the int value with a fraction?


    Example of what I'm working with.


    private int fibPullback = 2;


    [Description("Fib Pullback")]
    [GridCategory("Parameters")]
    public int FibPullback
    {
    get { return fibPullback; }
    set { fibPullback= (value); }
    }


    Thanks.

    #2
    Originally posted by brucelevy View Post
    I would like to be able to multiply by a decimal. In the code the range needs to be multiplied by a decimal (.618 for example) to give the price which the limit order will be set. How can I replace the int value with a fraction?


    Example of what I'm working with.


    private int fibPullback = 2;


    [Description("Fib Pullback")]
    [GridCategory("Parameters")]
    public int FibPullback
    {
    get { return fibPullback; }
    set { fibPullback= (value); }
    }


    Thanks.
    Change the variable type to a double.

    Comment


      #3
      Hello brucelevy,

      Thank you for your post.

      As koganam suggested you can change the variable to a double.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      633 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      364 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      567 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      568 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X