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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    85 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    48 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    29 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    32 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    67 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X