Where an indictor (e.g. anIndicator) contains a method (e.g. aMethod()), is is possible to access that method from another indicator or strategy?
public class anIndicator : Indicator
{
#region Variables
#endregion
protected override void Initialize() {
}
protected override void OnBarUpdate() {
aMethod();
}
private void aMethod() {
Print ("aMethod");
}
#region Properties
#endregion
}
Shannon

Comment