- Search Metals Mine
-
rudy5 replied Aug 11, 2021Does anyone use the order expiration parameter? It doesn't seem to work with datetime format, and based on this url I'm guessing it might need to be in that time_setup_msc format, whatever that is.. it doesn't look like a timestamp. I'd appreciate ...
Metatrader5 and Python
-
rudy5 replied Aug 9, 2021Coded this type of SR level finally. I think it turned out pretty well. im using it on the index charts to activate trade scanning on actual pairs. So like if the JPY index gets within range of a sell level on the H1 chart, all JPY pairs will start ...
dolla dolla bills ya'll
-
rudy5 replied Jun 29, 2021Well maybe I need to go back and look at it again but I was converting to datetime and getting different results based on data type requested. Also, why not just do: ticks.time = pd.to_datetime(ticks.time)
Metatrader5 and Python
-
rudy5 replied May 1, 2021@SyntaxError: if you read this, that^ is what your system is missing. you have the entry trigger and I have the "why"
dolla dolla bills ya'll
-
rudy5 replied May 1, 2021I never posted charts showing the result of my correlation scanner which, out of everything I've done so far, is probably the most usable tool. the blue line is the average close of other markets which are currently correlated to the shown ...
dolla dolla bills ya'll
-
rudy5 replied Mar 28, 2021Yes spread trading would be quite complex but the more I’ve thought about it, it seems manageable. Just gotta break down the steps correctly and iter through the markets involved. I’m thinking I’ll actually go a different route than mt4: url won’t ...
Index Charts
-
rudy5 replied Mar 28, 2021It looks like in one of your previous posts you are trading the index charts, is the correct? If so, you have a program to automatically calculate the position sizing and direction for each pair used in the spread? Based on the quality of that blue ...
Index Charts
-
rudy5 replied Mar 28, 2021Sending the raw tick data to mt4 sounds nice. I was normalizing before combining in order to get equal weighted baskets (ATR normalized). However I suppose an ATR based weight could be applied within mt4. I opened one of your old GitHub links to see ...
Index Charts
-
rudy5 replied Mar 24, 2021it seems the main issue with the index charts is the normalization period. I figured I could build a database of 1min candles by querying a few days worth of tick data each time and appending the new row(s) to the database. I knew it would be a bit ...
Index Charts
-
rudy5 replied Mar 22, 2021Does anyone else have to make different time adjustments depending on whether you request ticks or candles? I have to add 8 hours for one and subtract 6 hours for another. Very odd.
Metatrader5 and Python
-
rudy5 replied Mar 10, 2021Scanning for abnormal volume. I’m thinking there’s a better way to filter for these that I’ll get to later. This was ok for a first view
dolla dolla bills ya'll
-
rudy5 replied Mar 10, 2021NZD index. peaks taken out by a fast break (typo in the photo, its really NZD) url image GBP url JPY url CHF url
dolla dolla bills ya'll
-
rudy5 replied Feb 26, 2021a long, long time ago I made the first version of what is now a fairly complex system of analyzing the FF calendar forecasts. It can be found here for now: url
dolla dolla bills ya'll
-
rudy5 replied Feb 26, 2021I believe there may be someone years from now who stumbles upon this thread looking for info so here, this is what I had to do to get accurate index charts: 1. request ticks and resample into some really low timeframe (seconds) 2. transform prices ...
Index Charts
-
rudy5 replied Feb 21, 2021I guess plotting chart objects is outside the scope of the python api sadly
Metatrader5 and Python