Votes
Answers
Views
Question
0
1
785
asked 5 years ago by Doug
Category:
Watch Lists
Pete TOS gets really confusing, every time I try to assign a background color to a column, it returns: EXACTLY ONE PLOT EXPECTED. I have attached to code I am using, i have tried everything....except what works of course. Can you help with plot nee...
0
1
352
asked 5 years ago by Craig Habermehl
Category:
Stock Scanners
Pete I have a study that colors my bars red/green and yellow for neutral...I was looking to scan for stock that are all red or green in multiple time frames...I would only get results if the 5,10,15,20,30,1hr.2hr,4hr and daily are all geeen. Or a va...
0
1
114
asked 5 years ago by Sharon Artis
Category:
Stock Scanners
Using the ElliotOscillator on TOS, I would like to be able to scan for the following conditions: I wish to be able to input the number of red bars, and have the scan return those tickers that meet the condition, where the number of bars specified are...
0
1
111
asked 5 years ago by Shaishav Patel
Category:
Chart Studies
Hi Pete , For Buy Signal I am looking for a code which should compare any candle’s open with the high of the previous to previous candle ( not the high of the two previous candles since there are instances where the open is lower than the previous c...
0
1
68
asked 5 years ago by Byronfern S
Category:
Chart Studies
Hi pete, i like to know if is posible to start the calculation of a study at 9:30 am, but have premarket still visble? thanks! heres the code: def newDay = GetDay() GetDay()[1]; rec runningSumOfHighs = if newDay then high else runningSumOfHighs[1] +...
0
1
115
asked 5 years ago by Eduardo Aviles
Category:
Watch Lists
I am looking somebody to help me with the following code: ---------------------------------------------------------- plot Bet = volume * 100 * 0.5 * (ask() + bid()); Bet.AssignValueColor(if Bet > 1000000 then Color.Green else if Bet < 300000 th...
0
1
38
asked 5 years ago by bokononist i
Category:
Watch Lists
On all the securities I have, I have GTC stop orders. Every morning, I look at the TOS watchlist "All account positions" and click on each ticker to bring up a chart so I can see where my stop is in relation to the pre-market bid/ask. This is a tedio...
0
1
119
asked 5 years ago by Craig Habermehl
Category:
Watch Lists
Hello Pete I've been working on a W/L code from your video on a T/K cross for watch list. I was hoping you could help me finish it...I'm looking to add how many bars ago the cross happened. Plot myVariable = Ichimoku()."Tenkan" is greater tha...
0
1
437
asked 5 years ago by Alexander Ladyzhensky
Category:
Chart Studies
Hi Pete, I'm new to this. I watched your video on open and hidden divergence. I have a few questions:1. Do Macd and RSi divergence indicators complement each other or one of them is enough? 2. From watching your video I had an impression that a hidde...
0
1
212
asked 5 years ago by Momentum_ Hunter
Category:
Chart Studies
Tags:
Is there a way to easily add the aggregation period input to any indicator? I tried adding input period to the Rate of Change indicator, but it still only calculates based on the selected chart period. declare lower; input length = 14; input c...