FloydBostwickOdlum

Dental Quest Setups

3
who knows, knows
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study("Dental Quest Setups", overlay = true)
//Buy Setup
bearflip = close[14]<close[10] and close[13]>close[9]
nineconsecbuy = close[4]>close and close[5]>close[1] and close[6]>close[2] and close[7]>close[3] and close[8]>close[4] and close[9]>close[5] and close[10]>close[6] and close[11]>close[7] and close[12]>close[8]
buysetup = bearflip and nineconsecbuy
plotarrow(buysetup, colorup = green, colordown = red, maxheight =50)
//Sell Setup
bullflip = close[14]>close[10] and close[13]<close[9]
nineconsecsell = close[4]<close and close[5]<close[1] and close[6]<close[2] and close[7]<close[3] and close[8]<close[4] and close[9]<close[5] and close[10]<close[6] and close[11]<close[7] and close[12]<close[8]
sellsetup = bullflip and nineconsecsell
plotarrow(-1*sellsetup, colorup = green, colordown = red, maxheight =50)
//plot(close)