Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座㉗ バックテスト|残高の推移を時系列で表示する
U.S. Dollar / Japanese Yen
Education
Pine講座㉗ バックテスト|残高の推移を時系列で表示する
By yuya_takahashi_
Follow
Follow
Updated
Aug 1, 2019
2
9
Jul 22, 2019
「ストラテジーテスター>概要」のグラフの横軸は、「取引回数」がデフォルトです。
概要を把握するにはまったく問題ありませんが、ときにチャートと照らし合わせて時系列で確認したいケースがあります。
今回の方法を使うと、オシレーターの窓に「残高の推移」を表示することができますので、
・どの売買で
・どれくらいの資金の増減
みたいなことが、
簡単に確認できるようになります。
前回のコードに追記しているので、
追記部分のみ解説を加えたいと思います。
=====
//
version
=4
strategy( "MovingAvg2Line Cross" )
fastLength = input( 9 )
slowLength = input( 18 )
price = close
// 残高の計算(スタート時の資金 + 累計損益)
// strategy.initial_capital → スタート時の資金
// strategy.netprofit → 累計損益
balance = strategy.initial_capital + strategy.netprofit
mafast = sma( price ,fastLength )
maslow = sma( price ,slowLength )
if ( crossover( mafast ,maslow ) )
strategy.entry( "MA2CrossLE" ,strategy.long ,comment="MA2CrossLE" )
if ( crossunder( mafast, maslow ) )
strategy.entry( "MA2CrossSE" ,strategy.short ,comment="MA2CrossSE" )
// スタート時の資金を描画
plot( strategy.initial_capital )
// 残高の描画
plot( balance )
=====
Aug 1, 2019
Note
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
Follow
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Also on:
Related publications
Pine講座⑰ 2行で日経平均との相関を表示する
by yuya_takahashi_
Pine講座⑱ 複数の相関を表示する
by yuya_takahashi_
Pine講座⑲ 2行でlabelを表示する
by yuya_takahashi_
Pine講座⑳ labelでインフォパネルを表示する
by yuya_takahashi_
Pine講座㉑ ラインを表示する
by yuya_takahashi_
Pine講座㉒ ラインとラベルを組み合わせる
by yuya_takahashi_
Pine講座㉓ 終値から ±2-ATR にラインを描画する
by yuya_takahashi_
Pine講座㉔ 取引量を算出してインフォパネルに表示する
by yuya_takahashi_
Pine講座㉕ TradingViewでバックテストをする
by yuya_takahashi_
Pine講座㉖ バックテスト|2本のSMAで途転
by yuya_takahashi_
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.