TheBulltrader

2 Pip Scalp to nearly double your account

259
Untested indicator that I wrote and that I will be testing. The idea consists of going for 2 pips a day for the purpose of making a 90% yearly return.
Risks: no stoploss = Possibility of being margin called
Benefits= takes 5 seconds to enter the trade once a day
Indicator shows that if you had bought at daily close, you would have been profitable 88 out of 90 days within 24 hours for the past 3 months. The other 2 days would have been in drawdown but would have eventually profited.
Wish me luck.
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="2 pip scalp", shorttitle="MO", overlay =false)
x=security(tickerid,'D',high)
y=security(tickerid,'D',low)
z=security(tickerid,'D',close)
//directions- at daily close enter a buy for 2 pips and go for .25% a day = 7.5% a month = .90%
buy=(high-close)*10000
sell=(low-close)*10000

a=iff(buy>2,2,0)
b=iff(sell<-2,-2,0)
plot(a,color=green)
plot(b,color=red)