Creating a custom class with interface returns "Crashed in OnStart with NullReferenceException: Object reference not set to an instance of an object"
Creating a custom class with interface returns "Crashed in OnStart with NullReferenceException: Object reference not set to an instance of an object"
26 Feb 2023, 01:48
Dear,
I'm trying to create a custom class to manage the current status of open positions. For that it needs the cAlgo.API.Position class.
public class NewcBot2 : Robot //regular bot class
{
public static string sn = "CN50";
protected override void OnStart()
{
PositionStatus ini = new PositionStatus(); //creates an instance of PositionStatus class
MessageBox.Show(ini.ListIdPrice()[0].ToString()); //Attempts to show the first value of ListIdPrice method, in PositionStatus class
}
}
public class PositionStatus : NewcBot2 //Class Positionstatus with NewcBot2 as interface,
{
public List<KeyValuePair<double, double>> ListIndexPrice() //all this
{
Dictionary<double, double> positionsdictionary = new Dictionary<double, double>();
int i = 0;
foreach (var position in Positions) //Positions here is from cAlgo.Api.Positions, if I remove the : NewcBot2 interface Visual Studio 2022 returns that "Positions is a type, which is not valid in the current context"
{
if (position.SymbolName == sn)
{
positionsdictionary.Add(i, position.EntryPrice);
}
i++;
}
List<KeyValuePair<double, double>> list = positionsdictionary.ToList();
return list;
}
}
Replies
lagostada
01 Mar 2023, 02:23
I don't want to create a new instance.
Is it possible to read the object only? How to do that?
@lagostada
PanagiotisChar
01 Mar 2023, 09:35
Hi there,
It seems you are not familiar with C# programming and OOP. You can't call anything from wherever you want. Positions is a property of Robot class and it can be accessed only as a property of a Robot object.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
06 Mar 2023, 08:55
Hi there,
If you don't know how to program this yourself, you can ask a professional to help you here.
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar
PanagiotisChar
28 Feb 2023, 09:30
Hi there,
Positions is a property of the Robot class. If you need to access this property in another class, you should pass the robot object to your class.
Aieden Technologies
Need help? Join us on Telegram
Need premium support? Trade with us
@PanagiotisChar