[Blotter-commits] r1408 - pkg/blotter/R
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Mar 10 21:43:32 CET 2013
Author: peter_carl
Date: 2013-03-10 21:43:32 +0100 (Sun, 10 Mar 2013)
New Revision: 1408
Modified:
pkg/blotter/R/chart.Posn.R
Log:
- fix to pass dots into chart_Series, as promised in the documentation
Modified: pkg/blotter/R/chart.Posn.R
===================================================================
--- pkg/blotter/R/chart.Posn.R 2013-03-09 17:48:46 UTC (rev 1407)
+++ pkg/blotter/R/chart.Posn.R 2013-03-10 20:43:32 UTC (rev 1408)
@@ -75,7 +75,7 @@
# scope the Price data by Dates
if(!is.null(Dates)) Prices=Prices[Dates]
- chart_Series(Prices, name=Symbol, TA=TA)
+ chart_Series(Prices, name=Symbol, TA=TA, ...)
if(!is.null(nrow(Buys)) && nrow(Buys) >=1 ) (add_TA(Buys,pch=2,type='p',col='green', on=1));
if(!is.null(nrow(Sells)) && nrow(Sells) >= 1) (add_TA(Sells,pch=6,type='p',col='red', on=1));
if(nrow(Position)>=1) {
More information about the Blotter-commits
mailing list