Displaying 20 results from an estimated 200 matches similar to: "problem with chartSeries"
2011 Dec 22
1
Trying to use chartSeries in quantmod
> colnames = c("date","price")
> data = read.csv(file="data.csv", sep=",", header=F, nrows=261, skip=5, col.names=colnames)
> library(quantmod)
> data
date price
1 2011-12-18 13.7825
2 2011-12-11 13.5500
...
...
...
259 2007-01-07 10.8256
260 2006-12-31 10.8531
261 2006-12-24 10.8169
# Here's where I would like to use
2012 Jul 27
1
Working with quantmod chartSeries and plot.zoo
Hi all,
I'm a newbie to R and it has been very helpful to use your website.
Unfortunately I've been struggling with my code now for two days so I wanted
to ask few questions. I've been trying to create nice graphs to put into a
pdf sheet but I'm having little problems with all the packages I've been
using. So what I want to accomplish is create one pdf sheet with three
graphs
2012 Oct 14
0
Asking help about drawing and saving candle chart automatically....
Hello,
I have trouble with saving and showing candlestick graph.
I want to draw daily 1-minute candle chart per each day and save it
repeatedly.
The data I saved and is used in my code is as the following format:
-----------------------------------------------------
Index,Open,High,Low,Close # header
2011-11-01 9:00:00 ,248.50,248.95,248.20,248.70
...
2011-11-01 15:15:00
2010 Nov 18
1
Accessing variables inside a namespace
Hello Group,
I am trying to see if there is way to access data that is inside another
namespace.
For e.g. the addATR function in the quantmod package calculates the ATR
using the TTR package and then plots it to the graph.
Now since it has already calculated the info that I need, can I access that
data which if I look at the function code is stored in a variable called
"atr"
2016 Apr 09
1
Quantmod abline and axis configuration
Hi all,
I have this code
I want to add two ablines like this
abline(h=2400, lty=3, col="lightgrey")
abline(h=400, lty=3, col="lightgrey")
But doesnt wotk.
I alo try to set ylim from 0 to max "Foa"+1000 but I?m not able ?Is it
posible?
require(latticeExtra)
require(ggplot2)
require(reshape2)
suppressPackageStartupMessages(require(googleVis))
require(quantmod)
2011 Jul 26
1
intraday plot and gaps in data
Hi,
I have an intraday timeseries of financial data (see below) which has gaps
due to market opening and closing hours. I am trying to plot it, but the
time gap is always visible in the plot. I tried converting data to xts, zoo,
timeSeries and plotting it with different functions i.e. plot.xts, plot.zoo.
The only way to make it work was with function 'chartSeries' in the quantmod
package
2011 May 05
1
quantmod's addTA plotting functions
Hi,
I'm having trouble with quantmod's addTA plotting functions. They seem to
work fine when run from the command line. But when run inside a function,
only the last one run is visible. Here's an example.
test.addTA <- function(from = "2010-06-01") {
getSymbols("^GSPC", from = from)
GSPC.close <- GSPC[,"GSPC.Close"]
GSPC.EMA.3
2010 Aug 15
2
Adding colored background area to a time series plot
Hi,
I am trying to add a rectangular colored background area to a plot of a time series of relative price changes. I believe that what I'm trying to do is very similar to the question and example given here:
http://www.mail-archive.com/r-help at stat.math.ethz.ch/msg73948.html
http://www.mayin.org/ajayshah/KB/R/html/g5.html
My problem/difference is that my time series looks like so:
>
2012 Sep 04
1
Producing a SMA signal when closing price is above the moving average for 3 days
I have loaded price data for GE and then calculated a 50 day simple moving
average. Then I have a created a ifelse statement that produce a 1 when
GE's closing price is above the simple moving average and a 0 when GE
Closing price is below the 50 day simple moving average.
However, what I really want to do is to produce a 1 for when the price is
above the simple moving average for 3 days
2010 Aug 07
0
icecast/libxml2 leaks memory on FC13
Hi,
the reporting person has tried also with vanilla icecast source compiled.
The setup is:
Liquidsoap in MP3 mode sending a stream
Winamp pulling the stream
A flash applet requesting a custom XSLT file every 10s
The output of valgrind is:
==13821==
==13821== HEAP SUMMARY:
==13821== in use at exit: 1,744,928 bytes in 4,194 blocks
==13821== total heap usage: 41,508 allocs, 37,314 frees,
2019 Jan 18
0
Samba, ZFS and FreeBSD 12
On Fri, 18 Jan 2019 11:15:38 +0000
Gerard Seibert via samba <samba at lists.samba.org> wrote:
> FreeBSD 12.0-RELEASE-p2 GENERIC amd64
> samba48-4.8.7
>
> Ever since updating from FreeBSD 11 to FreeBSD 12, I have experienced
> a problem with samba. While still on FreeBSD 11, I configured a
> Windows 10 machine to write backups of selected directories to my
> FreeBSD
2019 Jan 18
1
Samba, ZFS and FreeBSD 12
On Fri, 18 Jan 2019 12:14:47 +0000, Rowland Penny via samba stated:
>On Fri, 18 Jan 2019 11:15:38 +0000
>Gerard Seibert via samba <samba at lists.samba.org> wrote:
>
>> FreeBSD 12.0-RELEASE-p2 GENERIC amd64
>> samba48-4.8.7
>>
>> Ever since updating from FreeBSD 11 to FreeBSD 12, I have experienced
>> a problem with samba. While still on FreeBSD 11,
2019 Jan 18
2
Samba, ZFS and FreeBSD 12
FreeBSD 12.0-RELEASE-p2 GENERIC amd64
samba48-4.8.7
Ever since updating from FreeBSD 11 to FreeBSD 12, I have experienced a
problem with samba. While still on FreeBSD 11, I configured a Windows
10 machine to write backups of selected directories to my FreeBSD
machine. That worked perfectly. No problems were detected and
everything was backed up correctly. However, after updating to FreeBSD
12 a
2010 Jan 12
0
Strange SAMBA Winbind behavior - WBC_ERR_AUTH_ERROR - NT_STATUS_WRONG_PASSWORD
Hello All,
I am having a weird behavior and after 2 days of trying to fix it, I
just decided to ask the experts in this group!
I have a RHEL5 box running SAMBA 3.4.3-41.el5. Users authenticate via
Winbind to a Windows 2008R2 Domain controller.
Authentication is fine, users can log in but ...
1. When user type their login/username, it takes 3 seconds to get
the password
2010 May 29
4
ZFS and IBM SDD Vpaths
I have 6 zfs pools and after rebooting init 6 the vpath device path names have changed for some unknown reason. But I can''t detach, remove and reattach to the new device names....ANY HELP! please
pjde43m01 - - - - FAULTED -
pjde43m02 - - - - FAULTED -
pjde43m03 - - - - FAULTED -
poas43m01 - - - -
2003 Oct 24
0
pam_smbpass can't find password database
Hello
Sorry for disturbing again. It looks like I must pass lot of compilation issues to force pam_smbpass working. And I don't believe, that nobody faced same problems as I do, because I am using quite trivial configuration without success, so maybes somebody can share experience with pam_smbpass under Solaris or help me identify what's wrong with it ?
So finally I wrote my own pam
2013 Jan 28
2
R plot like candlestick
Hi all,
I'm new on this list so I greet all.
My question is: does exist in R a plot similar to candlestick plot but
not based on xts (time series)? I have to plot a range of 4 value: for
every item I have min value, max value and 2 intermediate values. I
would like plot this like a candlestick, i.e. with a box between 2
intermediate values and 1 segment between box and min value and a
segment
2005 Oct 09
1
Rmetrics fMultivar how to?
Hi Everybody,
I am a total beginner at this so please bear with me.
I downloaded by hand the file WIG20.txt (Warsaw Stock Exchange Index of 20
most important stocks). The format is this:
Name,Date,Open,High,Low,Close,Volume
WIG20,19940414,1000.00,1000.00,1000.00,1000.00,71600.000
WIG20,19940418,1050.50,1050.50,1050.50,1050.50,99950.000
WIG20,19940419,1124.90,1124.90,1124.90,1124.90,138059.000
2011 Oct 20
4
quantmod package
i am new to the quantmod package . so if the answer is trivial please excuse
me. i want to study stock values within a day. i get current stock updates
using getQuotes and then want to produce usual quantmod graphs with that
values. also the graph should be able of adding technical indicators. please
help. in addition it will be helpful if anyone suggests how to run that code
continuously to get
2011 May 07
2
Convenience-at-the-expense-of-clarity (was: quantmod's addTA plotting functions)
Thanks, Writing plot(addTA()) worked fine.
I find myself with such mixed feelings about R. After finding that addTA
worked fine at the command line but not in a function, I puzzled for a long
time about what kind of virtual machine structure could possibly account for
that. I couldn't think of any.
It turns out that this isn't due to an R virtual machine structure. The
reason addTA adds