Questions tagged [ticker]

357 questions
3
votes
1 answer

How to get Industry Data from Yahoo Finance using Python?

I currently have some tickers and data from yahoo finance gained through datareader for Python. I have got everything for the dataframe in relation to numbers except the industry from the profile of the ticker. I was wondering if there is any code…
Kani S
  • 73
  • 1
  • 1
  • 7
3
votes
0 answers

How to keep datetime axis ticks fixed in bokeh?

I am attempting to show a tick for every single one of my datapoints in a timeseries line chart, where the timeseries can be resampled to a different rate depending on a user's choice. Minute - Hour - Day - Month. I would like for each tick to be…
skrhee
  • 336
  • 5
  • 19
3
votes
1 answer

separating each stock data into individual dataframe

I took historical data of 100 stocks. It is a single file with all tickers with corresponding data. How to loop such that each ticker data gets separated in dataframe with its own name? I've tried this but this doesnt work. for ticker in stocks: …
VidyaSree
  • 57
  • 2
3
votes
1 answer

Golang: Interrupting infinite polling having time.Sleep

I am using the following simple polling mechanism: func poll() { for { if a { device1() time.Sleep(time.Second * 10) } else { sensor1() …
Jeet
  • 75
  • 1
  • 12
3
votes
1 answer

Matplotlib colorbar ticks format when using scientific notation

I'm bothering you with a silly question, but I couldn't find an awnser. I'm trying to add a colorbar to an image using matplotlib. The issue comes when I try to format the ticks of the colorbar. I would like to have a scientific notation format, but…
DanielPerez
  • 47
  • 2
  • 6
3
votes
1 answer

How does golang ticker work?

func Tick() { fmt.Println("startTime", time.Now().Format("2006-01-02 15:04:05")) …
what is what
  • 1,461
  • 2
  • 12
  • 16
3
votes
2 answers

Why does time.After never fire when it is paired with a ticker in a select block?

I have a select block that is listening on 2 channels, a ticker and a timer: package main import ( "fmt" "time" ) func main() { ticker := time.NewTicker(5 * time.Second) for { select { case z := <-ticker.C: …
F21
  • 32,163
  • 26
  • 99
  • 170
3
votes
3 answers

Suggested Golang architecture for polling user accounts frequently

I'm creating a small service where I poll around 100 accounts (in a Twitter-like service) frequently (every 5 seconds or so) to check for new messages, as the service doesn't yet provide a streaming API (like Twitter actually does). In my head, I…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
3
votes
1 answer

Lines with easelJS using Ticker

I started learning html5 and easelJS two days ago, and I'm working on a game. Now I ran into some problems of course :) I know I can draw a line with the code: var context = canvas.getContext('2d'); context.beginPath(); context.moveTo(100,…
trainoasis
  • 6,419
  • 12
  • 51
  • 82
3
votes
0 answers

Give task priority android

I have an android application where i have some scrolling text ticker that is implemented via javascript and loaded in a web view. It is working fine but whenever the processor is busy, (like i have many timers in my application for updates, slide…
Sanober Malik
  • 2,765
  • 23
  • 30
3
votes
1 answer

Is there Push functionality for Coldfusion to create a live ticker?

We are hosting a contest on our website where visitors can vote for their favorite contest entry. We are getting a lot of traffic, and a lot of votes. We would like to add a ticker to our homepage that updates live whenever a vote is cast to show…
Nick Petrie
  • 5,364
  • 11
  • 41
  • 50
2
votes
2 answers

How to post to the ticker on facebook, like spotify does with music

I'm making an app that should post to the ticker on Facebook, of what I'm hearing on my app... Just like Spotify does with their app.. I've made the Open Graph on facebook, and the FB connection on my app.. I can post news at my wall from my app,…
Patrick R
  • 1,949
  • 3
  • 32
  • 58
2
votes
1 answer

Is there any way to read from the Facebook Ticker (App or Stream) using the Graph API?

I have done some research and know there is currently no way to post specifically to the Facebook ticker, but I am curious if API developers are able to get any information out of the ticker using the API.
Stephen Woods
  • 4,049
  • 1
  • 16
  • 27
2
votes
1 answer

Golang time.Ticker to tick on clock times

I am working on a Go program and it requires me to run certain function at (fairly) exact clock times (for example, every 5 minutes, but then specifically at 3:00, 3:05, 3:10, etc, not just every 5 minutes after the start of the program). Before…
Erik Booij
  • 105
  • 10
2
votes
3 answers

My application name is appearing incorrectly in Facebook's canvas app ticker

I have some question regarding fb app ticker, I already ask this question on facebook development forum but its been a few days now and to no avail. You see, I have develop my very first facebook app called MagMeUp but every time I use it, my app…
Brian
  • 23
  • 2
1 2
3
23 24