[R-SIG-Finance] Luxor Demo Question
Brian G. Peterson
brian at braverock.com
Mon Apr 24 20:14:56 CEST 2017
On 04/24/2017 12:38 PM, John Klingensmith wrote:
> Hi,
> Does anyone know the purpose behind why the parameters in the Luxor demo
> are preceded by dots?
>
> # optimization range
> .FastSMA = (1:30)
> .SlowSMA = (20:80)
>
>
> It seems to make them hidden, which also makes them difficult to remove.
They're just named parameters with dots in the name. They are used in
the parameter demos.
You can easily see hidden objects with
ls(all=TRUE)
and can remove any named object:
rm(.FastSMA)
with or without a dot.
Regards,
Brian
More information about the R-SIG-Finance
mailing list