- Search Metals Mine
-
rudy5 replied Jun 15, 2025I'm liking this strategy. find the currency that looks tradable then go look at all of its crosses. or, ideally, find 2 currencies that look tradable at the same time in opposite directions. interestingly though, often what turns out to be the right ...
dolla dolla bills ya'll
-
rudy5 replied Jun 13, 2025just getting weights to normalize against volatility and then using those as tradingview symbols comes out pretty close to my own calculation EURx Formula: EURUSD*0.1418+EURGBP*0.6165+EURJPY*0.0022+EURAUD*0.0906+EURCAD*0.1489 USDx Formula: ...
dolla dolla bills ya'll
-
rudy5 replied Jun 4, 2025heres an EA that will save rectangle data to a file. Im using this as a preliminary filter for my strategy, only allowing trades within a zone. read the data like this zones = ...
Metatrader5 and Python
-
rudy5 replied Jun 2, 2025finally figured out a good way to get manually drawn zones to be part of the algo. I got grok to make this EA that tracks your rectangles and sets the zone type and then exports to a csv image image ...
dolla dolla bills ya'll
-
rudy5 replied Jun 1, 2025I've been enjoying your thread! Thought you might be interested in this, just messing around with finding the most trendy times of day. 99,999 10 min candles were used in the calculation. Each bar represents a 10min candle. These times are -5 GMT ...
No Indicator Trading System
-
rudy5 replied Jan 30, 2025combining levels with value. github commit 4d28d770523c925622a789f13eda8700852bec18
dolla dolla bills ya'll
-
rudy5 replied Jan 10, 2025picture perfect short setup in gold today. delta profile on the footprint chart with cumdelta red line image image
dolla dolla bills ya'll
-
rudy5 replied Nov 18, 2024spent the weekend trying to make an indicator to show gold spread/skew signals. it was tough and didn't turn out super great but I think my divergence calculation is better now. I added in some value lines too and overlay the signals when divergence ...
dolla dolla bills ya'll
-
rudy5 replied Jun 21, 2024image //@version=5 indicator(title="Corr Div Signals", shorttitle="Corr Div Signals", overlay=true, scale=scale.none, max_bars_back = 500) // Calculated on 2024-04-17 // Timeframe D1 // Shift -30 // Correlation Period 200 // Correlation Threshold ...
dolla dolla bills ya'll
-
rudy5 replied Jan 25, 2024yesterday ES at top edge with everything else weak or already falling. image divergence showing up at the same time on ES value. 177 tick drop. image Been seeing an average of one of these setups a day this week.
dolla dolla bills ya'll
-
rudy5 replied Jan 25, 2024Have my own custom charting solution now leveraging TradingViews open source lib. I can do basically whatever I want now ie plot SR levels automatically and display custom data. image market overview with es, cl, ABCs, 2s10s, commodity risk. ...
dolla dolla bills ya'll
-
rudy5 replied Nov 10, 2021I’d imagine there’s a growing number of vaxed people beginning to regret that choice

Money Flow Trading Method along with Risk Management
-
rudy5 replied Oct 31, 2021Assuming I can debug any issues with my new order management code on my phone from work, today will be the first day testing my strategy. I finally have an integrated, coherent strategy from beginning to end. The only manual interaction is with ...
dolla dolla bills ya'll
-
rudy5 replied Oct 31, 2021alright got it working, not sure exactly what was going wrong. I did realize though if you pass an int for volume, tp, or sl you will get an error. you can't fix this for tp or sl in the back end unfortunately (I didnt see tp or sl anywhere in ...
Metatrader5 and Python
-
rudy5 replied Oct 30, 2021Good point about crypto. It's not open on my broker so I'll still have to test later but thanks for the help. Clearly it works from your video so I'll just have to keep playing with it. Perhaps I set a magic number on my entry and didn't set it on ...
Metatrader5 and Python
-
rudy5 replied Oct 29, 2021I was scrolling thru the options that pop up if you type "mt5." and it looks like maybe I can just call "mt5.Close" image I can't test it now that its the weekend but it looks like if I just pass the symbol and ticket everything else will be ...
Metatrader5 and Python
-
rudy5 replied Oct 29, 2021Have you tested that? I tried a lot of varieties and nothing worked. That was probably the first thing I tried there’s also “ORDER_TYPE_CLOSE_BY” which seems to be what I’d need but that didn’t work either
Metatrader5 and Python