• 프로덕트
  • 커뮤니티
  • 마켓
  • 브로커
  • 더보기
지금 시작
  • 커뮤니티
  • /지표 및 전략
  • /롱

롱

ATR+ (Stop Loss Indicator)This script is designed to aid in back-testing and trade execution. It displays three sets of values - the teal colored value is the current ATR, the green colored value is your stop loss distance (in pips) below the most recent swing low for long trades , and the red colored value is your stop loss distance (in pips) above the most recent swing high for short trades . You can change the stop loss settings to base your stop loss on a set pip amount or by however many multiples of the current ATR as you wish (eg. 1.5x ATR). Feel free to ask any questions or edit the script without permission :) - Matt.
Pine Script® 인디케이터
ZenAndTheArtOfTrading의
업데이트됨
3434
Bitfinex BTC longs vs Short ratioSelf explanatory... Shows the long / short ratio of trader's positioning in bitfinex exchange. The higher the ratio, it means there are more longs. The lower the ratio, the more shorts are currently being opened,.
Pine Script® 인디케이터
LastBattle의
44
BFXLS - Compare styleDisplays BitFinex longs and shorts on your chart in the same was as if you add them by using TradingView's "compare" function - major advantage is that this works for all pairs that BitFinex supports without having to manually set up your chart each time.
Pine Script® 인디케이터
lvturner의
55
[naoligo] Pivot Points (Daily)Suporte/Resistência do Pivot diário para gráficos intraday Marcação do S/R tradicional e S/R Fibonacci Daily Pivot Point Support/Resistances on intraday charts Both Traditional and Fibonacci methods plotted
Pine Script® 인디케이터
naoligo의
업데이트됨
22
LONG TERM INVESTMENT TECHNICAL STRATEGY SCRIPT200 - WEEKLY MOVING AVERAGE GREEN LINE IS 200 WEEKS MOVING AVERAGE OF CLOSE BLUE LINE IS 200 WEEKS MOVING AVERAGE OF LOW MULTIPLIED BY 0.90 RED LINE IS 100 WEEKS MOVING AVERAGE OF CLOSE CONDITION: GREEN LINE SHOULD BE ABOVE RED LINE AND PRICE SHOULD BE ABOVE GREEN LINE BUY ONCE THE PRICE IS ABOVE GREEN LINE AND FULFILLS THE CONDITION. TARGET 1 FOR TIME FRAME 1 YEAR= 2 X GREEN LINE VALUE WHEN PRICE CROSSED IT TARGET 2 FOR TIME FRAME 3 YEARS= 3 X GREEN LINE VALUE WHEN PRICE CROSSED IT TARGET 3 FOR TIME FRAME 5 YEARS= 5 X GREEN LINE VALUE WHEN PRICE CROSSED IT TARGET 4 FOR TIME FRAME 10 YEARS= 10 X GREEN LINE VALUE WHEN PRICE CROSSED IT STOP LOSS IS TRAILING TO BLUE LINE
Pine Script™ 전략
ResearchWings의
11
Kallol: Rising Three LongRising three bar bullish pattern indicator as described by Neetesh Jain
Pine Script® 인디케이터
shortwire의
Kallol: Rising Three LongRising three bulling pattern indicator as described by Neetesh Jain:
Pine Script® 인디케이터
shortwire의
33
Narrow Range + Inside Day, Long Only Strategy (by ChartArt)This long only strategy determines when there is both a NR7 (narrow range 7, a trading day in which the range is narrower than any of the previous six days), plus a inside day (high of the current day is lower than the high of the previous day and the low of the current day is higher than the low of the previous day) both on the same trading day and enters a long trade when the close is larger than the open and the slope of the simple moving average is upwards, too. The strategy closes the long trade next time the daily close is larger than the open in any of the next trading days. In addition the NR7ID can be colored (the color is green when the close is larger that day than the open, else the color is red) and the SMA can be drawn with a color based on the direction of the SMA slope. To fine-tune the strategy it is highly recommended to change the period length of the SMA, which determines if the measured SMA slope is upwards or not. Inspiration: How to trade NR7 and Inside Day Pattern paststat.com Code credit: NR7 indicator script from Tradingview user Lazybear: pastebin.com
Pine Script™ 전략
ChartArt의
22
Commercials Net Position
Pine Script® 인디케이터
wayusa의
업데이트됨
88
Days Trader 1.0Simple program to look for day of week or day of month patterns in chart data. All original work by Boffin Hollow Lab Author: Tarzan
Pine Script™ 전략
tarzan의
11
Momentuminator 1.0Here we have a general purpose momentum based long and short flip flop with optional profit target and maximum loss. Program development: Boffin Hollow Lab Author: Tarzan at tradingview.com Release: Version 1.0 May 2016 Please Note: Past Performance is not necessarily indicative of future results
Pine Script™ 전략
tarzan의
11
MACDouble + RSI (rec. 15min-2hr intrv) Uses two sets of MACD plus an RSI to either long or short. All three indicators trigger buy/sell as one (ie it's not 'IF MACD1 OR MACD2 OR RSI > 1 = buy", its more like "IF 1 AND 2 AND RSI=buy", all 3 match required for trigger) The MACD inputs should be tweaked depending on timeframe and what you are trading. If you are doing 1, 3, 5 min or real frequent trading then 21/44/20 and 32/66/29 or other high value MACDs should be considered. If you are doing longer intervals like 2, 3, 4hr then consider 9/19/9 and 21/44/20 for MACDs (experiment! I picked these example #s randomly). Ideal usage for the MACD sets is to have MACD2 inputs at around 1.5x, 2x, or 3x MACD1's inputs. Other settings to consider: try having fastlength1=macdlength1 and then (fastlength2 = macdlength2 - 2). Like 10/26/10 and 23/48/20. This seems to increase net profit since it is more likely to trigger before major price moves, but may decrease profitable trade %. Conversely, consider FL1=MCDL1 and FL2 = MCDL2 + (FL2 * 0.5). Example: 10/26/10 and 22/48/30 this can increase profitable trade %, though may cost some net profit. Feel free to message me with suggestions or questions.
Pine Script™ 전략
RyanMartin의
66
Fisher Transform with Up/Down colours - squattterCredit to HPotter - colour code borrowed from his AO script.
Pine Script® 인디케이터
squattter의
Simple RSI-MA Algo Beats DOW By Huge Margin Over Past 100 Years!This simple RSI-MA long/short algorithm beats the Dow by a FREAKING HUGE margin over the past century (excluding dividends and trading costs). The algorithm uses a fast SMA of the RSI as a buy/cover signal and a slow SMA of the RSI as a sell/short signal. Backtest period = 09/17/1916 - 11/02/2015 Dow = 98 --> 17,830 = +18,094% = 5.38% CAGR Algorithm = net profit + open P/L = +43,349% = 6.31% CAGR Notice how the algorithm dodged both the 30s' Great Depression and the 2008 Crisis. Pretty cool huh? :) ALGORITHM'S FORMULA (use weekly chart): Buy/Cover = MA10(RSI10) cross> 50 Sell/Short = MA50(RSI10) cross< 50 STRATEGY TESTER'S SETTINGS: - Initial cash = $10,000 - Pyramiding disabled - Re-investment enabled (order size = 100% of equity ) - Trade re-calculations disabled DISCLAIMER: None of my ideas and posts are investment advice. Past performance is not an indication of future results. This strategy was constructed with the benefit of hindsight and its future performance cannot be guaranteed.
Pine Script™ 전략
Stable_Camel의
55
Breakout Range Long StrategyBreakout Range Long Strategy
Pine Script® 인디케이터
HPotter의
22
11223344556677
…999999

ICE Data services 제공 엄선 마켓 데이터.FactSet 제공 엄선 참조 데이터. Copyright © 2025 FactSet Research Systems Inc.© 2025 TradingView , Inc.

제품 그 이상
  • 수퍼차트
스크리너
  • 주식
  • ETF
  • 채권
  • 암호화폐
  • CEX 페어
  • DEX 페어
  • Pine
히트맵
  • 주식
  • ETF
  • 암호화폐
캘린더
  • 이코노믹
  • 어닝
  • 배당
더 많은 제품
  • 수익률 곡선
  • 옵션
  • 뉴스 플로우
  • Pine Script®
앱
  • 모바일
  • 데스크탑
커뮤니티
  • 소셜 네트웍
  • 사랑의 벽
  • 프렌드 리퍼하기
  • 하우스룰
  • 모더레이터
아이디어
  • 트레이딩
  • 교육
  • 에디터즈 픽
Pine Script
  • 지표 및 전략
  • 마법사
  • 프리랜서
툴 및 구독
  • 특징
  • 가격
  • 마켓 데이터
트레이딩
  • 오버뷰
  • 브로커
스페셜 오퍼
  • CME 그룹 선물
  • 유렉스 선물
  • 미국 주식 번들
회사 정보
  • 회사 소개
  • 우주 임무
  • 블로그
  • 커리어
  • 미디어 키트
굿즈
  • 트레이딩뷰 스토어
  • 트레이더용 타로 카드
  • C63 트레이드타임
정책 및 보안
  • 사용조건
  • 면책사항
  • 프라이버시정책
  • 쿠키 정책
  • 접근성 정책
  • 보안 팁
  • 버그 바운티 프로그램
  • 상태 페이지
비즈니스 솔루션
  • 위젯
  • 차팅 라이브러리
  • Lightweight Charts™
  • 고급 차트
  • 트레이딩 플랫폼
성장 기회
  • 광고
  • 브로커 통합
  • 파트너 프로그램
  • 교육 프로그램
커뮤니티
  • 소셜 네트웍
  • 사랑의 벽
  • 프렌드 리퍼하기
  • 하우스룰
  • 모더레이터
아이디어
  • 트레이딩
  • 교육
  • 에디터즈 픽
Pine Script
  • 지표 및 전략
  • 마법사
  • 프리랜서
비즈니스 솔루션
  • 위젯
  • 차팅 라이브러리
  • Lightweight Charts™
  • 고급 차트
  • 트레이딩 플랫폼
성장 기회
  • 광고
  • 브로커 통합
  • 파트너 프로그램
  • 교육 프로그램
Look FirstLook First