Difference between revisions of "Study on study"

From MultiCharts
Jump to navigation Jump to search
(Created page with "From MultiCharts 8.8 beta 1 it is possible to use the values of another indicators as inputs for the indicator. File:Indicator on indicator.png To select an indicator v...")
 
 
(9 intermediate revisions by 7 users not shown)
Line 1: Line 1:
From MultiCharts 8.8 beta 1 it is possible to use the values of another indicators as inputs for the indicator.  
+
It is possible to use the values of other indicators as inputs for indicator or signal.  
  
 
[[File:Indicator on indicator.png]]
 
[[File:Indicator on indicator.png]]
Line 8: Line 8:
 
# 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 indicator to be used as an input value 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.
Line 22: Line 22:
 
# Indicator: - keyword, is obligatory,
 
# Indicator: - keyword, is obligatory,
 
# "Name of indicator" - string value (in quotes) representing. Is obligatory.
 
# "Name of indicator" - string value (in quotes) representing. Is obligatory.
# plotN - plot number is to be used for calculations. Example - plot1, plot2 etc. Is optional parameter. If not specified, the plot with the lesser 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 style="background-color: #E3FBE5;">'''Note: This feature is not supported in MultiCharts.NET'''</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:About_EasyLanguage]]
+
[[Category:Studies]]

Latest revision as of 15:24, 2 August 2021

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

Indicator on indicator.png

To select an indicator value as an input:

  1. Apply the indicator to the chart,
  2. In Format Study --> Inputs 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.

Indicator on indicator 2.png

The line in the input field is

Indicator: "Name of indicator" plotN | Input_Name = Input_Value

where:

  1. Indicator: - keyword, is obligatory,
  2. "Name of indicator" - string value (in quotes) representing. Is obligatory.
  3. 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.
  4. | - delimiter.
  5. Input_name = Input_Value - setting certain value for a certain input. Is optional parameter.


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:C# example; VB.NET example