GetMainValue (int offset)
method
Retrieves main Bands line value according to given offset.
Syntax
public double GetMainValue (int offset)
Parameters
offset — int
Return
double
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace iBandsExamples
{
public class iBandsExamples : NETStrategy
{
public override void OnQuote()
{
//If you use this method you can get indicators data
Indicator Bands = Indicators.iBands(CurrentData,20);
//Also you can use methods of the class
double Bands_lower = Indicators.iBands(CurrentData,20).GetLowerValue(1);
double Bands_upper = Indicators.iBands(CurrentData,20).GetUpperValue(1);
double Bands_main = Indicators.iBands(CurrentData,20).GetMainValue(1);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.