FormatPriceMarker()
<< Click to Display Table of Contents >> FormatPriceMarker() |
![]() ![]() ![]() |
Used to override the default string format of a NinjaScript's price marker values.
A virtual string which is overridden from the default price marker value
You must override the method in your indicator with the following syntax
public override string FormatPriceMarker(double price)
{
}
price |
A double value representing the value to be overridden. |
Tip: Standard Numeric Format Strings examples can be found on Microsoft's Developer Network (MSDN article) |
// FormatPriceMarker method of a custom indicator |