Is there any way to get access to a dataseries with a running number of trade signals vs actual number of positions open in portfolio mode?
Size:
Color:
In PosSizers, the WealthLab.PosSizer.Candidates property contains the complete list of potential trade signals (with all their properties, i.e. List<WealthLab.Position>) that are being processed for the bar on which the PosSizer was called.
Size:
Color:
Thanks!
I think somebody already have asked that before.... Where do we find PosSizers API documentation?
Size:
Color:
It'll be at fidelity.com when they get around to putting it there.
Size:
Color:
How do you initialize a new position sizer object? Maybe the smallest of a code sample will allow us to experiment with creating them until the documentation gets placed on-line.
I noticed that typing PosSizer psz = new PosSizer( ... ) doesn't work as PosSizer is protected.
QUOTE:
It'll be at fidelity.com when they get around to putting it there.
This implies that it could be months plus away from happening?
Size:
Color:
First off Steve, PosSizers are assemblies - you'll need to compile them in Visual Studio, SharpDevelop (or MonoDevelop).
QUOTE:
I noticed that typing PosSizer psz = new PosSizer( ... ) doesn't work as PosSizer is protected.
"= new PosSizer" is not a valid instruction because, being an abstract class, the PosSizer interface requires implementation, not merely creating a new instance. Coding a PosSizer is easier than a Visualizer, but these animals are more complex than e.g. Indicators because of the need to create a GUI and to save/restore its preferences.
QUOTE:
This implies that it could be months plus away from happening?
I'm under impression it was a technical glitch. The docs were expected to be released in one shot with 5.6. We're currently waiting for the status update.
QUOTE:
Maybe the smallest of a code sample will allow us to experiment with creating them until the documentation gets placed on-line.
Let's wait a bit. I have a library of PosSizers that I'm planning to hand out to known customers but it requires a small fix due to some change in between builds. Should the wait take unusually long, I'll be demoing the source code of one of my PosSizers just like with Community.Providers for educational purposes.
Size:
Color:
thanks. that's great. I appreciate it.
Size:
Color: