NexusFi: Find Your Edge


Home Menu

 





Custom expandable class issue


Discussion in NinjaTrader

Updated
    1. trending_up 2,124 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
 robsol 
Czech Republic
 
Experience: Beginner
Platform: NinjaTrader
Trading: Futures
Posts: 3 since Aug 2012
Thanks Given: 0
Thanks Received: 0

Hello all, I dont really know what to do I made my custom class RangeCondition and I want it to be expandable in PropertyGrid in Parameters window. I think I done it. But in a LOG I have the same error after compiling and refresh it (just for the first time after compile). And this property doesnt remeber its value Would you be so king and help me somehow ??

Code:
[TypeConverterAttribute(typeof(ExpandableObjectConverter))]
[Serializable()]
public class RangeCondition: ISerializable
{
private OF_OperatorType condoperator = OF_OperatorType.NoOperator; // enumerator defined above
private OF_ConditionType condtype = OF_ConditionType.OpositeSideDiagonally; // enumerator defined above
private double multiplier = 1;
private int increment = 0;
private int condvalue = 0;
public NinjaTrader.Indicator.Indicator Reference = null;


public RangeCondition() {
Operator = OF_OperatorType.NoOperator;
Type = OF_ConditionType.OpositeSideDiagonally;
Multiplier = 1;
Increment = 0;
Value = 0;
}


public override string ToString()
{
string rtn = "no condition";
if (condoperator!=OF_OperatorType.NoOperator) {
rtn = "Number ";
} else {
return rtn;
}

if (condoperator==OF_OperatorType.GreaterThan) rtn+= "> ";
if (condoperator==OF_OperatorType.GreaterThanOrEqualTo) rtn+= ">= ";
if (condoperator==OF_OperatorType.LessThan) rtn+= "< ";
if (condoperator==OF_OperatorType.LessThanOrEqualTo) rtn+= "<= ";

if (condtype==OF_ConditionType.OpositeSide) rtn+= "OS";
if (condtype==OF_ConditionType.AvgTradesPerPeriod) rtn+= "AvgTPP";
if (condtype==OF_ConditionType.Value) rtn+= condvalue+"";

if (Multiplier>1) rtn+= "*"+Multiplier;
if (Increment>0) rtn+= "+"+Increment;

return rtn;
}


public void GetObjectData(SerializationInfo serInfo, StreamingContext context)
{
serInfo.AddValue("Operator",Operator);
serInfo.AddValue("Type",Type);
serInfo.AddValue("Multiplier",Multiplier);
serInfo.AddValue("Increment",Increment);
serInfo.AddValue("Value",Value);
}

private RangeCondition(SerializationInfo serInfo,StreamingContext context)
{
this.Operator = (OF_OperatorType)Enum.Parse(typeof(OF_OperatorType), serInfo.GetString("Operator"));
this.Type = (OF_ConditionType)Enum.Parse(typeof(OF_ConditionType), serInfo.GetString("Type"));
this.Value = serInfo.GetInt32("Value");
this.Increment = serInfo.GetInt32("Increment");
this.Multiplier = serInfo.GetDouble("Multiplier");
}
.
.
.
and so on
}

Error text:
Failed to set property 'R1_Condition1' for indicator 'TestIndicator':
Object of type RangeCondition cannot be converted to type RangeCondition.


Is it a problem of serialization or WHAT ???
I would appreciate any help.
Thank you very much.

RS


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Ninjatrader users - good CONNECTIONs post and article fr …
NinjaTrader
Czechia Live at 52.5% as England Rides 4-2 Wave to Co-Fa …
Prediction Markets & Event Contracts
Netherlands & Germany Surge as World Cup Field Narro …
Prediction Markets & Event Contracts
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
Trump Media to sell instant access to market-moving soci …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Want your NinjaTrader indicator created, free?
5 thanks
FootPrintV2 Chart for NT8
1 thanks
BERN ALGOS algo trading journal
1 thanks
Afternoon-close session
1 thanks
Franks Trading Journey
1 thanks




Last Updated on November 30, 2014


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts