-
Here is for example `macd_cross.py`
```python
import talib
SYMBOL = "BTCUSDT"
def initialize(state):
state.number_offset_trades = 0
@schedule(interval="1h", symbols=SYMBOL)
def …
-
As title, a wish. Detail:
[https://www.tradingview.com/script/GcbLcwG7-MACD-Zero-Lag/](https://www.tradingview.com/script/GcbLcwG7-MACD-Zero-Lag/)
-
Hello everyone,
Im so interest with this project, but i dont understand about indicator sent to telegram , someone help me understand it?
[5m / 14] binance-BTC/USDT-stoch_rsi-0 is cold! ({'stoc…
-
## 지표 단위(봉)
- 꼭 필요한 것: 분 단위, 일 단위
- 일 단위의 경우 최근 24시간이 아닌 각 일자별 지표
- 이후 가능한 범위: 10분, 30분, 1시간, 2시간, ...
## 거래량 지표
- Volume Ratio
- 주어진 k일에 대해
- (상승일 거래량 합계 / 하락일 거래량 합계) * 100
- 변…
-
TLDR;
=====
Add this to the bottom of your config to use the new method, comment out `method = MACD` to `method = percentile`. if you don't use MarketAnalysis you don't need to do anything.
```
…
-
-
Hello,
I've looked at several ways to calculate the MACD indicator but the numbers seem to always be off of what Webull shows. Does anybody know of a way to get the accurate numbers?
Thanks
-
Hi, thank you for sharing your code. Can you provide more examples of models? Because the performance of A2C is not very good, I am trying to use my own data (including newly added signal_features) an…
-
## 기본 전략
- 매수 전략
- 하락 반등 구간을 찾는다.
- SMA 180선 아래로 내려갔을 때
- MACD 차이가 음수인 상황에서 전일 대비 0.1 이상 상승 시점 포착
- MFI < 35 일때 매수
- 매도 전략
- MACD가 고점 찍고 꺽이는 순간
- MACD 차이가 양수이면서 정점 찍고 내려오는 시점을 노린다.…
necmo updated
2 years ago
-
There are some indicators like VWAP, MACD, etc. that need specific parameters. I am currently using whatever the defaults are for the stock indicators library. All the function definitions can be fou…