FXドル円クロス円のアノマリー手法を3つ放出
FX取引で様々な手法を開発してきましたが、多すぎて覚えきれないのが悩みでした。そこで、開発した手法をインジケーターとして記録することにしました。これで忘れても後から見返せるようになりました。
開発した手法を自動売買(EA)システムに組み込めば、かなり儲かりそうです。しかし最近は、EAの運用に疲れを感じています。
代わりに、半裁量取引を好むようになりました。高めのレバレッジでポジションを取ることで、短期間でも残高を増やせるのが魅力です。
結局のところ、EAは少し使わなくなってきています。市場の変化に合わせて、自分の取引スタイルも変えていく必要があるんだなと実感しています。
[ホソノP]ポンド円おやすみ手法金土のみ
言わずと知れたポンド円おやすみ手法です。
日本時間の23時30分にポンド円をロングする手法で、簡単に使えます。
さらに金曜夜に絞るとなぜか成績が上向くのでお試しください。
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © hosono_p
//@version=5
strategy("[ホソノP]ポンド円おやすみ手法金土のみ", overlay=true)
buy_time = time("1", "2330-0905:127","Asia/Tokyo") > 0
bgcolor(buy_time ? color.new(color.green, 90) : na)
if strategy.position_size > 0
if not buy_time
strategy.close_all()
if strategy.position_size == 0
if buy_time
strategy.entry("buy",strategy.long)
[ホソノP]東京市場ドル円アノマリー
日本時間の13時45分から14時45分までなぜか円安傾向にあるのでスキャトレーダーは頭の片隅にいれておいてください。
その時間にスキャでロングするのもいいと思います。
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © hosono_p
//@version=5
strategy("[ホソノP]東京市場ドル円アノマリー", overlay=true)
buy_time = time("1", "1345-1445:1234567","Asia/Tokyo") > 0
bgcolor(buy_time ? color.new(color.green, 90) : na)
if strategy.position_size > 0
if not buy_time
strategy.close_all()
if strategy.position_size == 0
if buy_time
strategy.entry("buy",strategy.long)
[ホソノP]東京市場RSI反転ストラテジー
これも一種のアノマリーです。
日本時間の12時30分にドル円クロス円に戻しが発生しやすい傾向があります。
テクニカルはなんでもOKですがオーソドックスにRSI7030で判別し、その時間に逆張りしておくと勝てるというものです。
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © hosono_p
//@version=5
strategy("[ホソノP]東京市場RSI反転ストラテジー", overlay=false)
// RSIの設定
rsiLength = 14
rsiSource = close
rsiValue = ta.rsi(rsiSource, rsiLength)
// 日本時間の12:30を定義
entryTime = time("1", "1225-1300", "Asia/Tokyo") > 0
// エントリー条件
longCondition = ta.crossunder(rsiValue, 30)
shortCondition = ta.crossover(rsiValue, 70)
// ポジションの管理
var isInTrade = false
if (entryTime)
if (longCondition)
strategy.entry("Long", strategy.long)
isInTrade := true
if (shortCondition)
strategy.entry("Short", strategy.short)
isInTrade := true
// 30分後に決済
if (not entryTime and isInTrade)
strategy.close_all()
isInTrade := false
// RSIプロット
plot(rsiValue, "RSI", color.purple, 2)
hline(70, "Upper Band", color.red)
hline(30, "Lower Band", color.green)
// エントリー時間帯の背景色
bgcolor(entryTime ? color.new(color.blue, 90) : na)
よろしければサポートお願いします! いただいたサポートはクリエイターとしての活動費に使わせていただきます!