- Search Forex Factory
- rudy5 replied Nov 10, 2021
I’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, 2021
Assuming 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, 2021
alright 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, 2021
Good 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, 2021
I was scrolling thru the options that pop up if you type "mt5." and it looks like maybe I can just call "mt5.Close" 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 handled for ...
Metatrader5 and Python
- rudy5 replied Oct 29, 2021
Have 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
- rudy5 replied Oct 28, 2021
Im 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, 2021
Found 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, 2021
is anyone using a trade copier from mt5 to mt4 that they could recommend?
Metatrader5 and Python
- rudy5 replied Oct 6, 2021
I 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 6, 2021
The green line from the correlation scanner is designed to lead price and its really been doing an amazing job overall
dolla dolla bills ya'll
- rudy5 replied Oct 3, 2021
I’ve reached a new milestone. I now have some automation through telegram commands, such as sending pictures of custom charts controlling which currencies to trade, in which direction, and for how long (defaults 24hrs). My bot reads that directional ...
dolla dolla bills ya'll
- rudy5 replied Sep 21, 2021
I 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, 2021
Can’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, 2021
I 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, 2021
Went 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, 2021
it’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