Table of Contents

Class SymbolTranslation

Namespace
Balsam.DataServers
Assembly
Balsam.Backtester.dll

A class used for symbol translations.

public class SymbolTranslation
Inheritance
SymbolTranslation
Inherited Members
Extension Methods

Constructors

SymbolTranslation(string, double)

Creates a new symbol translation for applying a multiplier.

public SymbolTranslation(string symbol, double multiplier)

Parameters

symbol string
multiplier double

SymbolTranslation(string, string)

Creates a new symbol translation for changing symbols.

public SymbolTranslation(string symbol, string originalSymbol)

Parameters

symbol string
originalSymbol string

SymbolTranslation(string, string, double)

Creates a new symbol translation for changing symbols and applying a multiplier.

public SymbolTranslation(string symbol, string originalSymbol, double multiplier)

Parameters

symbol string
originalSymbol string
multiplier double

Properties

Multiplier

Gets the price multiplier to apply to the original data.

public double Multiplier { get; }

Property Value

double

OriginalSymbol

Gets the original (old) symbol.

public string OriginalSymbol { get; }

Property Value

string

Symbol

Gets the preferred (new) symbol.

public string Symbol { get; }

Property Value

string

Methods

ToString()

Returns a string representation of this object.

public override string ToString()

Returns

string