+1 888 340 6572

Study on study: Difference between revisions

From MultiCharts
No edit summary
No edit summary
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'''.


[[File:Indicator on indicator 2.png]]
[[File:Indicator on indicator 2.png]]
Line 16: Line 16:
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, is obligatory,
* Indicator - keyword. It is an obligatory value.
# "Name of indicator" - string value (in quotes) representing. Is obligatory.
# Name of indicator - string value (in quotes) representing. It is an obligatory value.
# 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.
# 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.
# | - delimiter.
# | - delimiter.
# Input_name = Input_Value - setting certain value for a certain input. Is optional parameter.  
# Input_name = Input_Value - setting certain value for a certain input. Is 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 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]]

Revision as of 14:29, 24 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 value.
  1. Name of indicator - string value (in quotes) representing. It is an obligatory value.
  2. 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.
  3. | - delimiter.
  4. Input_name = Input_Value - setting certain value for a certain input. Is optional parameter.
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:C# example; VB.NET example