+1 888 340 6572

Study on study: Difference between revisions

From MultiCharts
No edit summary
No edit summary
Line 21: Line 21:


* Indicator - keyword. It is an obligatory value.
* Indicator - keyword. It is an obligatory value.
# Name of indicator - string value (in quotes) representing. It is an obligatory value.
* 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 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>


[[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.
  • 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.
  • | - delimiter.
  • 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