- Search Metals Mine
-
rudy5 replied Oct 28, 2021Im trying to add some trade modification functions (partial close) and can't figure out the right params.. any one have code for that written?
Metatrader5 and Python
-
rudy5 replied Oct 15, 2021Found the problem. I was using datetime.now() for the copy_to argument which equated to not asking for the current latest data. If I put datetime.now()+pd.Timedelta('1 day') I do get the latest data. Heh... oops. Perhaps this is what Kaetea was ...
Metatrader5 and Python
-
rudy5 replied Oct 10, 2021is anyone using a trade copier from mt5 to mt4 that they could recommend?
Metatrader5 and Python
-
rudy5 replied Oct 5, 2021I think I can code an adaptive divergence indicator for it to account for the craziness of the GBP line and the relatively high correlation of the JPY line. but how much automation does a person really need and plus I suppose that’s more in the ...
dolla dolla bills ya'll
-
rudy5 replied Oct 5, 2021The green line from the correlation scanner is designed to lead price and its really been doing an amazing job overall image image image image image image
dolla dolla bills ya'll
-
rudy5 replied Oct 3, 2021I’ve reached a new milestone. I now have some automation through telegram commands, such as sending pictures of custom charts image controlling which currencies to trade, in which direction, and for how long (defaults 24hrs). image My bot reads ...
dolla dolla bills ya'll
-
rudy5 replied Sep 21, 2021I guess I was just being dumb def _set_expiration(timeframe:str, info:dict, num_candles:int): ''' Set the order expiration at n candles from now. 'info' is from mt5.symbol_info(symbol)._asdict() ''' tf_to_sec = { 'H12': 43200, 'H8': 28800, 'H6': ...
Metatrader5 and Python
-
rudy5 replied Sep 14, 2021Can’t say it does. It looks like you could be identifying a very short term moving average slope above a certain threshold, either before or after a consolidation or around certain times of day. Why the riddle? I’ve been doing this a long time. I ...
Successful trading Strategies
-
rudy5 replied Sep 14, 2021I don’t doubt that you trade successfully. But you do make me doubt anyone could code your strategy. IMO it takes a lot of awareness of what makes a strategy successful if you want to code it. For every 1 thing you’re consciously aware of there may ...
Successful trading Strategies
-
rudy5 replied Sep 14, 2021Went back to look at my correlation scanner recently because it just seemed like something was off. Sure enough, I was missing this tiny logic piece (literally 2 lines of code). Adding it made a serious improvement. chfjpy used to be one of my worse ...
dolla dolla bills ya'll
-
rudy5 replied Sep 14, 2021it’s not that easy. I’ve written code to capture trades like this and it requires a lot of filtering for market context. you can correct me if I’m wrong but I’m guessing the basic approach is.. 1. Look for an overall directional market 2. Identify ...
Successful trading Strategies
-
rudy5 replied Sep 8, 2021I guess it depends what you’re trying to do. If you want a simple program just write it in mql. But if you’ll be doing any complex data analytics python is the way to go
algorithmic trading
-
rudy5 replied Sep 8, 2021I’d be happy to shoot some ideas back and forth. Learn Python and get familiar with pandas if you want to code an algo. You can interact with MT5 via python. url
algorithmic trading
-
rudy5 replied Sep 8, 2021I want an even more general approach. Just a simple directional scoring mechanism that can be applied to all timeframes, where the score of each time frame becomes part of a spectrum of scores, and the continuity of similar scores across that ...
dolla dolla bills ya'll
-
rudy5 replied Sep 7, 2021One interesting thing from the back test was when I changed my SL from 2.5 atr to 2 atr the profitability took a major hit. Which would suggest that my reversal entries are often happening too early and I could maybe account for a bigger extension ...
dolla dolla bills ya'll
-
rudy5 replied Sep 6, 2021Filtered the signals down a lot, did a massive back test and had a profitable result. Big standard deviation unfortunately but for a strictly PA strategy that’s understandable. I’m starting to feel a new idea forming. This entry signal I have now is ...
dolla dolla bills ya'll
-
rudy5 replied Sep 3, 2021How much time per day are you in front of the screen?
LWBR - Big Reward using M15, H4 and D1 combo
-
rudy5 replied Aug 21, 2021Some recent entry signals image image image image image image
dolla dolla bills ya'll
-
rudy5 replied Aug 14, 2021why do you want to run your code in mt5? I’ve never done it, but it seems potentially limiting. I’ve built a ton of stuff at this point and it all runs in a terminal or vs code. I’d imagine it would get messy having programs running as scripts on ...
Metatrader5 and Python