差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
tradingview:pine:first_indicator [2023/08/06 09:05] – [編集 - Panel] 管理人tradingview:pine:first_indicator [2023/08/25 12:57] (現在) 管理人
行 1: 行 1:
 +{{tag>pine pine初心者 pine基礎}}
 +
 ====== 🔰はじめての Pine インジケーター作成 ====== ====== 🔰はじめての Pine インジケーター作成 ======
  
-参考:Pine Script® v5 User Manual [[https://www.tradingview.com/pine-script-docs/en/v5/primer/First_indicator.html|First indicator]]+{{INLINETOC}}
  
 ===== Pine スクリプトエディタ ===== ===== Pine スクリプトエディタ =====
行 25: 行 27:
  
 === サンプルスクリプト === === サンプルスクリプト ===
-<code python [enable_line_numbers="true"]>+<code csharp [enable_line_numbers="true"]>
 //@version=5 //@version=5
 indicator("MACD #1") indicator("MACD #1")
行 61: 行 63:
 <WRAP indent>MACD の長期 EMA 期間を格納しておくための整数変数 slow を定義している。</WRAP> <WRAP indent>MACD の長期 EMA 期間を格納しておくための整数変数 slow を定義している。</WRAP>
 5 行目:''fastMA = ta.ema(close, fast)'' 5 行目:''fastMA = ta.ema(close, fast)''
-<WRAP indent>ローソク足の終値系列で計算する期間 fast(=12) の EMA (指数平滑移動平均) を格納する変数 fastMA を定義している。</WRAP>+<WRAP indent>ローソク足の終値系列期間 fast(=12) の EMA (指数平滑移動平均) を格納する変数 fastMA を定義している。</WRAP>
 6 行目:''slowMA = ta.ema(close, slow)'' 6 行目:''slowMA = ta.ema(close, slow)''
-<WRAP indent>ローソク足の終値系列で計算する期間 slow(=26) の EMA を格納する変数 slowMA を定義している。</WRAP>+<WRAP indent>ローソク足の終値系列期間 slow(=26) の EMA を格納する変数 slowMA を定義している。</WRAP>
 7 行目:''macd = fastMA - slowMA'' 7 行目:''macd = fastMA - slowMA''
 <WRAP indent>2 つの EMA の差を格納する変数 macd を定義している。</WRAP> <WRAP indent>2 つの EMA の差を格納する変数 macd を定義している。</WRAP>
行 82: 行 84:
  
 === サンプルスクリプト === === サンプルスクリプト ===
-<code python [enable_line_numbers="true"]>+<code csharp [enable_line_numbers="true"]>
 //@version=5 //@version=5
 indicator("MACD #2") indicator("MACD #2")
行 137: 行 139:
 また、コードは 3 行短くシンプルになり、改良することができた。 また、コードは 3 行短くシンプルになり、改良することができた。
  
-{{tag>pine pine_beginner}}+===== 参考 ===== 
 + 
 +  * Pine Script® v5 User Manual [[https://www.tradingview.com/pine-script-docs/en/v5/primer/First_indicator.html|First indicator]]
  

  • tradingview/pine/first_indicator.1691280319.txt.gz
  • 最終更新: 2023/08/06 09:05
  • by 管理人