Hi,
i use the Stryd for Running Power. In a User Chart I want to view the estimated CP over Time (Daterange from the Left Side Bar) only for Running. I Used the following Code:
{
init {
xx<-c();
yy<-c();
}
finalise {
activities("isRun <> 0", {
xx <- estimates(cp3, date);
yy <- estimates(cp3, cp);
annotate(label, "current CP: " + config(cp));
});
}
x { xx; }
y { yy; }
}
Current configured CP is 323 for Running (see Image).
Now the Problem, when Last Activity i has import or selected is a Cycling, the cycling Values where displayed in the Chart.
in the Upper Right., the configured CP of Cycling is shown.
The Estimation are that, which are shown in a Cycling PDC Diagramm.
Now, when a Select a Running Activity and switch back to Trend View, the values are Correct shown. .
How I can force GoldenCheetah to always show me the estimation for Running only ?
I tried also to use the Global Filter, but this didn't work.
Greetings Marcel