+1 888 340 6572

Study on study: Difference between revisions

From MultiCharts
No edit summary
No edit summary
 
Line 11: Line 11:
# Select the plot value to be used as an input value.
# Select the plot value to be used as an input value.
# Click '''OK'''.
# Click '''OK'''.
 
<br>
[[File:Indicator on indicator 2.png]]
[[File:Indicator on indicator 2.png]]


The line in the input field is  
The line in the input field is  
'''Indicator: "Name of indicator" plotN | Input_Name = Input_Value'''
'''Indicator: "Name of indicator" plotN | Input_Name = Input_Value'''


Line 26: Line 25:
* Input_name - Input_Value - setting certain value for a certain input. It is an optional parameter.  
* Input_name - Input_Value - setting certain value for a certain input. It is an optional parameter.  


<div class="note">In MultiCharts .NET this functionality is not available through study inputs. One can access objects of one study from the another one in the code:[http://www.multicharts.com/discussion/viewtopic.php?f=19&t=12593#p100345 C# example]; [http://www.multicharts.com/discussion/viewtopic.php?f=19&p=111183#p111183 VB.NET example]'''</div>
<div class="note">In MultiCharts .NET this functionality is not available through study inputs. One can access objects of one study from another one via the code:
* [http://www.multicharts.com/discussion/viewtopic.php?f=19&t=12593#p100345 C# example]
* [http://www.multicharts.com/discussion/viewtopic.php?f=19&p=111183#p111183 VB.NET example]</div>
 


[[Category:Studies]]
[[Category:Studies]]

Latest revision as of 18:28, 25 July 2024

It is possible to use the values of other indicators as inputs for indicator or signal.

To select an indicator value as an input:

  1. Apply the indicator to the chart.
  2. In Format StudyInputs tab click the input value.
  3. Click the ... button to select the indicator to be used as an input value.
  4. Select the required indicator and click OK.
  5. Select the plot value to be used as an input value.
  6. Click OK.


The line in the input field is Indicator: "Name of indicator" plotN | Input_Name = Input_Value

where:

  • Indicator - keyword. It is an obligatory parameter.
  • Name of indicator - string value (in quotes) representing. It is an obligatory parameter.
  • plotN - plot number is to be used for calculations. Example - plot1, plot2 etc. It is an optional parameter. If not specified, the plot with the smaller number is used.
  • | - delimiter.
  • Input_name - Input_Value - setting certain value for a certain input. It is an optional parameter.
In MultiCharts .NET this functionality is not available through study inputs. One can access objects of one study from another one via the code: