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 RookieTrader, Today, 09:37 AM
    3 responses
    15 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by kulwinder73, Today, 10:31 AM
    0 responses
    7 views
    0 likes
    Last Post kulwinder73  
    Started by terofs, Yesterday, 04:18 PM
    1 response
    24 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by CommonWhale, Today, 09:55 AM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by Gerik, Today, 09:40 AM
    2 responses
    8 views
    0 likes
    Last Post Gerik
    by Gerik
     
    Working...
    X