일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 클라우드
- 퀀트
- can
- AWS
- 아마존 웹 서비스
- 오토사
- 토플 라이팅
- 백트레이더
- 토플
- 비트코인
- GeorgiaTech
- AUTOSAR
- 개발자
- 자동매매
- 자동차sw
- Bitcoin
- toefl writing
- python
- TOEFL
- 확률
- 블록체인
- 암호화폐
- backtest
- 백테스트
- backtrader
- 프로그래밍
- Cloud
- it
- 파이썬
- probability
- Today
- Total
목록트레이딩뷰 (3)
Leo's Garage
PineScript는 기술적 지표, 전략, 알림 등을 생성하고 사용자 정의하는데 사용되는 프로그래밍 언어디. TradingView 차트 플랫폼에서 사용되며, 시장 데이터를 분석하여 의사 결정을 내릴 수 있도록 해준다. PineScript는 JavaScript와 C와 같은 다른 프로그래밍 언어와 유사한 간단한 구문을 가지고 있으며, 기술적 지표, 수학 연산, 데이터 조작 등을 위한 내장 함수를 포함한다. 또한, 고유 지표와 전략을 생성하는데 필요한 다양한 사용자 정의 옵션을 제공한다. 예를 들어, 종가의 이동평균을 그리는 간단한 PineScript 스크립트는 다음과 같다. // This source code is subject to the terms of the Mozilla Public License 2..
50일 평균선보다 가격이 올라가면, 알람이 울리는 지표를 만들어보자. // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © downyK //@version=4 // Add 50 MA to the chart study("50 MA", overlay=true) ma50 = sma(close, 50) // Plot the 50 MA plot(ma50, color=color.red) // Create an alert for when the price crosses above the 50 MA alertcondition(close > ma50, title='Pri..
PineScript는 TradingVeiw라는 회사에서 자체 개발한 언어이다. PineScript를 사용하여 Custom한 지표를 생성할 수 있고, 이렇게 생성한 지표를 TradingView에 직접 사용할 수 있다. TradingView는 방대한 데이터를 제공하기도 하는데, 여기에 바로 테스트해볼 수 있다는 것은 큰 장점이다. https://www.tradingview.com/ TradingView – Track All Markets Where the world charts, chats and trades markets. We're a supercharged super-charting platform and social network for traders and investors. Free to sign..