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
Jul 26, 2019
2
6
Jul 23, 2019
前回、表示させた残高は「決済済みだけの残高」でした。
今回は「未決済(取引中)の損益も含めた残高」を表示させます。
(取引会社によって各社の表現が異なるので難しいのですが、、英語だと「account value」とされる項目です)
TradingViewでは、この資金量に応じて取引量を調整するようなロジックを組むこともできます。
=====
//
version
=4
strategy( "MovingAvg2Line Cross" )
fastLength = input( 9 )
slowLength = input( 18 )
price = close
balance = strategy.initial_capital + strategy.netprofit
// ここで未決済を含む残高を算出
accountValue = balance + strategy.openprofit
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 )
// 描画する
plot( accountValue ,color=color.red)
=====
Jul 26, 2019
Note
strategy.equity
も用意されています
strategy.initial_capital + strategy.netprofit + strategy.openprofit
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講座⑱ 複数の相関を表示する
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_
Pine講座㉗ バックテスト|残高の推移を時系列で表示する
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
.