A simple box in 20 candle to monitor price Top is the highest and bottom is the lowest of close in 20 candles. As close is moving outside this box then the signal is up or down trend. Code sample: low_val = ta.lowest(close, 20) high_val = ta.highest(close, 20) //Create Box box bx = na bx := box.new(time , high_val, time, low_val, xloc=xloc.bar_time,...
I try to research and develop some pattern when the market is weak: In this case I try 3 patterns below: var int cnt_out_up = 0 Pattern #1: Big drop wma_11 = ta.wma(close, 11) wma11 = request.security(symbol=syminfo.tickerid, timeframe="13", expression=wma_11, lookahead=barmerge.lookahead_on) wma_48 = ta.wma(close, 48) wma48 =...
Hello, I have tried using many indicators to trade stock and Bitcoin, accidentally picked up the secret, so I would like to share with you: The entry and exit points are important, but the exit point determines whether you win or lose. Maybe, you don't know about getting out for reasons: you may win a little bit, you lose so waiting or so you want to win...
I created a simple script "Moving Average MTF - Binancash" based on MA multi-timeframe and Super Trend CCI to strict BUY. This script is a study case to monitor stock when the market is bearish Let's use Support & Resistance and stop-loss if you want to try to trade.
I tried trading on some tickers with my logic to determine the Stock Direction BULLISH or BEAR. I looked at timeframe 2H and 4H (mainly 4H), logic: 1. Determine 4H Price > SMA20 then next day is BULLISH, should be CALL (conjunction EMA20 cross up EMA50 then strong market to CALL) 2. Determine 4H Price < SMA20 then BEARISH, don't CALL, should follow before...
I spent time researching the js library to implement a stock chart. Many thanks to C451 implemented the trading-vue-js from Github. TradingVue.js was a hackable charting lib for traders. You could draw literally ANYTHING on top of candlestick charts. Features Scrolling & zooming as we all like Simple API for making new overlays Custom drawing tools Non-time...
I tried to connect some vendors: IEXCloud, TD Ameritrade, Yahoo Finance, Rapid API, Alpaca, CNBC, and Tiingo I have some notes: IEXCloud has no historical prices on timeframes: 5m, 15m, 1h, 2h, 4h but realtime this one is a good performance TD Ameritrade limit connection by minutes and no timeframes: 1h, 2h, 4h Yahoo Finance has timeframes but it returns fake...
It is my logic to trade options, CALL option Steps: Crawl options data to get "date change" every day I will focus on the third expiration, ex: this week 01/07/2022 then expiration to trade: 01/21/2022 I will alert as overchange of 5 days of any strike over +150% then I will follow this one Setting up indicators: EMA5, EMA10. If price > EMA5 and EMA5...
I tried many indicators Support & Resistant and there are many indicators and it is difficult to understand and use. My friend shared a script, maybe useful to the traders. Please copy and add to Pine Script and Add to Chart in section bottom. Source code shared at: docs.google.com
I crawl options data from Yahoo Finance but actually, Yahoo returned fake data if I send a thousand requests. I research and use TD Ameritrade API to get options, both github.com and github.com is a good rating. However, every time I send a request a new token is generated then the TD Ameritrade API team noticed me. I like tdameritrade package than...
Yahoo Finance is the best tool. I like to trade options but I haven't found the best tool yet. I often follow Yahoo Options, I think this is the best tool and it is free. Although it is delayed 15 minutes as real-time price, I can get all contracts of many expirations and based on changing price. Steps to follow: Search a ticker and go to the Options section ...
Any ideas, suggestions, or recommendations? $TSLA $AAPL $MSFT $BA $INTC $JNJ $HAL $T $GE $VZ $IBM $AXP $LMT $FCX $MMM $HOOD $V $MA $NUE $ABT $PHG $CVX $MCD $NEE $STLD $VLO $CAT $RTX $BOH $X $BMRC $LRCX $CBU $SIFY $LEVI $LOGI $UMC $ADM $BX $ERIC $NOW $JBLU $LC $STX $NDAQ
NFLX can down -35%? I am wipe out and you? ====================== Shares of Netflix Inc. NFLX, -23.32% plummeted 19.6% in premarket trading Friday, as the streaming-video service's disappointing outlook overnight prompted a number of Wall Street analysts to cut their ratings, but at least one analyst said the selloff appears "overcooked." Benchmark's Matthew...
A/ Issues: 1) Grow stocks dropped 50% - 70% (long term portfolio) 2) Margin calls 3) Run out of cash 4) Average down? 5) Passive income on weekly / monthly basic B/ Solutions: 1) Review your stock in term of Fundamental Analysis, Business Analysis to make final decision 2) Stay focus in family & health 3) Buy PUT (5%) to protect your account 4) Average down or NO...
Cassava Sciences Stock Is Worth Almost 4x More After Adjusting for Risk * 1/10/2022 1:45pm EST * By Mark R. Hake, CFA Cassava Sciences (NASDAQ:SAVA) stands to gain a good deal this year. This will all depend on the company’s Phase 3 clinical trials progress in the results on actual patients with Alzheimer’s disease. SAVA stock could become a major winner as a...
Long time ago, I forgot OTC:SIGL of Elon Musk. Now it is bottom and go up 10%. This is a change when market crashes.
It is a note for developer Sometime, we need stock data to write strategy checking logic by python. Data from cnbc.com is good and it is free. How to get it? There are 2 steps to do: Step 1: install library python pip install cnbcfinance Step 2: Get history or get quote realtime # Get history data from cnbcfinance import get_history_df data =...