timj

Big Candles v1

This script simply takes a user-defined bar height number (variable barHeight) to find large candles. Automatically colors large bullish and bearish candles green or red, respectively. The barHeight can be modified to fit your needs.

Use this in a variety of ways:
- Confirm breakouts of support / resistance
- Identify new trends

Deposits welcome
ETH: 0x6F27eB87148522eb5cB0D2b19f2E27CeB4D0964d

BTC: 1xF8jqpnorL8FdxJuxLJvyrN6Zda3fUJs
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
//@version=2
strategy("Big Candles", overlay=true)

barHeight = input(.032)

bigUp() => close > open and high-low > barHeight
bigDown() => close < open and high-low > barHeight

plotshape(bigUp(), color=green, style=shape.arrowup, text="Buy")
plotshape(bigDown(), color=red, style=shape.arrowdown, text="Sell")
barcolor(bigDown() ? red : bigUp() ? green : gray)