Questions tagged [indicator]
The indicator tag has no summary.
66 questions
2
votes
0
answers
498
views
TED spread replacement and other worthwhile market indicators?
Would I be right in thinking that the St. Louis Fed Financial Stress Index, would be the nearest replacement for the old TED spread?
Any other indicators worth looking at?
I use the well known HYIOAS (...
0
votes
0
answers
87
views
Can I add Sharpe Ratio with information ratio in convex way
Sharpe Ratio can be turned into a convex function. And information ratio as well.
Supppose I add these ratios as follows:
(SR + 3 IR ) / 2
Can this function transfer into convex?
How should I do it?
-1
votes
3
answers
223
views
What is the official name for this indicator?
I distinctly remember that this type of indicator was named after a person. With reference to a particular period e.g. a week or month, it is computed as:
$$Ratio1(t) = \frac{Close(t) - Low(t)}{ High(...
0
votes
1
answer
468
views
How to use Ta-Lib to calculate the ewmstd?
I am trying speed up below code for faster speed,
df = df.ewm(span=lookback).std()
I wrote a numba version but it is very slow in large dataset
...
3
votes
2
answers
728
views
Python: detecting measured moves of candlestick data
Goal:
I'm looking to see if it's possible to programatically detect "measured moves" on candlestick data. The price data I am using is successfully retrieved from the TD Ameritrade platform ...
0
votes
1
answer
94
views
Open Interest on Stocks
According to the first bullet point in this explanation, "In the stock market, open interest is the number of buy orders submitted before the market opens. When the open interest is high, people ...
0
votes
1
answer
139
views
Variation of the trading range
Example: The trading range (in points) for each of the last 5 trading days for asset A is: 5,21,2,15,32 and for asset B is: 5,6,5,5,5. Is there an indicator that ranks assets based on variation of ...
0
votes
2
answers
277
views
Indicators parameters for weekly chart/data: to scale or not to scale, that is the question
Beginner here, so apologies for the rather naïve question, I try to find answers elsewhere but mostly I found opinions (often contradicting and rarely with an explanantion). Maybe I'm using the wrong ...
0
votes
4
answers
267
views
Where can I find a current tail risk indicator?
The definition of tail risk (risk of 3-standard deviations movement) seems to imply there would be a current market indicator for this.
Is there such an indicator available somewhere?
2
votes
1
answer
2k
views
VIX lagging or leading indicator
Could somebody help me understand if the VIX is a leading or lagging indicator.
From the CBOE whitePaper ( https://www.cboe.com/micro/vix/vixwhite.pdf). I've understood that the VIX tries to ...
1
vote
0
answers
70
views
What variables are used for the Institutional Activity Index (IAI)?
I've been looking for various ways to get more information about institutional trade action. Although weekly COT report is available, it's already outdated by 1 week at the time the report come out ...
2
votes
1
answer
2k
views
Definition of „getting picked off“ [closed]
Is there a precise definition of what getting picked off means. In particular I want to check whether I have been picked off. How can I measure this quantitatively?
0
votes
0
answers
124
views
Can I make the simple moving average less lagging by this method?
I have (T+3) predicted prices for a stock. Let us assume that the predicted prices are going to be very close to the actual prices. can I alter the formula of simple moving average for 20 days like ...
2
votes
1
answer
333
views
Stateful Technical Analysis Indicator Libray For Python
I an looking for a TA indicator library in python, that offers indicators you can update with ticks, in contrast to indicators that perform calculations on an entire data set.
For example, an RSI ...
0
votes
1
answer
412
views
How to calculate RSI while considering market close and holidays?
I was trying to calculate RSI over hourly OHLC bars for a symbol (AAPL as an example) and got stock, first how should I handle closing hours? (does it make sense to ignore them all together and assume ...
3
votes
2
answers
1k
views
Why there is a Deviation on my RSI indicator in comparison from one of the other Trading Markets
Hello all, and sorry for this stupid question. I am using my custom RSI indicator to which I created programmatically. I follow the equation type from here. My problem is when I compare it with the ...
1
vote
0
answers
199
views
Equivalent of Force Indicator Within Ta-lib
Is there any equivalent of the Force indicator (http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:force_index) within the talib library? (...
0
votes
1
answer
206
views
Comparing values of indicator between different stocks
I would like to ask whether there is a good way of analysing stock indicators that have no value limitations. For indicators like RSI we have a closed range ( 0 - 100 ) but in case of indicators like ...
0
votes
1
answer
823
views
How do you calculate the initial prior SAR value in a Parabolic SAR over FX market data
So I am attempting to calculate the Parabolic SAR over FX market data. I understand that the SAR equation is:
SARt = SARt-1 + * [EPt-1 - SARt-1]
with EPt-1 ...
0
votes
1
answer
349
views
Boeing's Debt-to-Equity Ratio
Background
I was quickly investigating Boeing's (BA) Debt-to-Equity ratio and received a very high number. I looked around online and have confirmed that BA has recently taken on a lot of debt, but ...
2
votes
2
answers
937
views
Computing multiple indicators in tidyquant
I am trying to get multiple indicator values such as RSI and EMA for equities using the package tidyquant in R. I tried the example from the vignette which is:
...
1
vote
2
answers
3k
views
R RSI Calculation (TTR package)
I'm using the default RSI calculation in the TTR package as follows:
result = RSI(data,14).
The function also allows the user to specify the averaging method:
result = RSI(data,14,"SMA"),
result =...
1
vote
2
answers
733
views
What is the definition of a 10-day low? [closed]
Or for that matter a [n]-day low? (As it relates to market data/trading).
When does a [n]-day low get disrupted and you have to begin tallying again?
2
votes
0
answers
609
views
Can you tell me what this RBloomberg formula means?
I've been asked to re-create a spreadsheet that used RBloomberg using a different data source. But I'm having trouble figuring out exactly what one of the spreadsheet's formulas does. Can anyone tell ...
3
votes
1
answer
1k
views
OBV indicator calculation in R
Here is a few references about OBV calculations:
http://ta.mql4.com/indicators/volumes/on_balance_volume
http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:...