- ago
Weight is an added feature in the Signal selection. How is it calculated? Is it used to determine the order in selecting signals? Is it used to determine which signals are NSF? Can we "modify" the weight based on other Values eg ADX>
0
991
3 Replies

Reply

Bookmark

Sort
- ago
#1
Please see Weight either in the QuickRef or in online manual:
https://www.wealth-lab.com/Support/ApiReference/Transaction
0
- ago
#2
If my C# code below does not explicitly assign transaction weights, ...

CODE:
   if (dxSmoothed[bar] < 37.0 && vossPredictorVelocityNorm[bar] > vossPredictVelNormThres[bar] //<33.5       && vossPredictorVelocity[bar] > vossPredictVelThres[bar]       && dxSmoothed[bar] > dxSmoothedThres[bar] //very predictive, but timing lagging       && mfoConsecUp[bar] > 0.0    {       Transaction t = PlaceTrade(bars, TransactionType.Buy, OrderType.Stop, bars.Close[bar], "Voss predictor buy");       t.SetPositionMetric("merit rank", dxSmoothedThres.MeritRank(bar));       //t.SetPositionMetric("Voss Predictor Velocity", vossPredictorVelocity[bar]);    }
... then how does WL assign these weights to the signal column below? Does it simply pick numbers at random for the weights? Or are these weights for something else entirely?
0
Glitch8
 ( 9.28% )
- ago
#3
Randomly
1

Reply

Bookmark

Sort