+1 888 340 6572

Study on study: Difference between revisions

From MultiCharts
No edit summary
No edit summary
 
(4 intermediate revisions by one other user not shown)
Line 5: Line 5:
To select an indicator value as an input:
To select an indicator value as an input:


# Apply the indicator to the chart,
# Apply the indicator to the chart.
# In Format Study --> Inputs tab click the input value,
# In '''Format Study''' → '''Inputs''' tab click the input value.
# Click the ... button to select the indicator to be used as an input value,
# Click the '''...''' button to select the indicator to be used as an input value.
# Select the required indicator and click Ok,
# Select the required indicator and click '''OK'''.
# 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'''''
where:


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.


# Indicator: - keyword, is obligatory,
<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:
# "Name of indicator" - string value (in quotes) representing. Is obligatory.
* [http://www.multicharts.com/discussion/viewtopic.php?f=19&t=12593#p100345 C# example]
# plotN - plot number is to be used for calculations. Example - plot1, plot2 etc. Is optional parameter. If not specified, the plot with the smaller number is used.
* [http://www.multicharts.com/discussion/viewtopic.php?f=19&p=111183#p111183 VB.NET example]</div>
# | - delimiter.
# Input_name = Input_Value - setting certain value for a certain input. Is optional parameter.  




<div style="background-color: #E3FBE5;">'''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>
[[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: