Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Auto update of indicator parameters

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

    Auto update of indicator parameters

    Hello,

    I have created custom indicator which is providing me with Stochastics parameters (K, D and Smooth) I shall use in my trading. These parameters can be different every bar.

    After my indicator gives me parameters I have to change Stochastics settings manually. I am wondering if it is possible to do it automatically.

    My goal is to see chart with Stochastics which parameters are auto updated when my custom indicator is telling to do so.

    #2
    Hello kucharek,

    You would not be able to change a Stochastics Indicators parameters on the fly automatically that is already applied to your chart, but you can have either your custom indicator or different custom indicator plot the values of the Stochastic parameters dynamically. For Example:

    Code:
    Plot0.Set(Stochastics(PeriodD, PeriodK, Smooth).D[0]);
    Plot1.Set(Stochastics(PeriodD, PeriodK, Smooth).K[0]);
    This way on each bar you will get the value of the Stochastic based on your variables (the variables I just used were to represent what Stochastics takes).

    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by mattbsea, Today, 05:44 PM
    0 responses
    4 views
    0 likes
    Last Post mattbsea  
    Started by RideMe, 04-07-2024, 04:54 PM
    6 responses
    31 views
    0 likes
    Last Post RideMe
    by RideMe
     
    Started by tkaboris, Today, 05:13 PM
    0 responses
    2 views
    0 likes
    Last Post tkaboris  
    Started by GussJ, 03-04-2020, 03:11 PM
    16 responses
    3,282 views
    0 likes
    Last Post Leafcutter  
    Started by WHICKED, Today, 12:45 PM
    2 responses
    20 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Working...
    X