Multi timeframe – MTF indicators for ProRealTime
Forums › ProRealTime English forum › ProBuilder support › Multi timeframe – MTF indicators for ProRealTime
- This topic has 161 replies, 52 voices, and was last updated 2 weeks ago by
JS.
Tagged: mtf, mtf indicators
-
-
12/04/2024 at 8:05 PM #241121
Actually the two values don’t match. It seems the 1-month data are updated to the prior month, not to the current 2-month data.
I can’t explain why. I suggest that you call PRT or press Ctrl+M to ask fo assistance.
If you replace line 1 by:
1timeframe (2 hours, default)then install the indicator on a 1-hour TF, it works like a charm!
12/18/2024 at 12:14 PM #241546right email: xxxxx
12/18/2024 at 3:22 PM #241561@lorenzo massaro
I don’t want to disappoint you, but these kinds of systems have come up many times before, and it always turned out that either the system was completely over-optimized, or that costs such as the spread were not, or insufficiently, taken into account.
Perhaps this is the exception to the rule, but have you also performed a walk forward test with OOS data?01/09/2025 at 11:12 PM #242358bonjourje souhaiterais créer dans proscreener sur 2 unités de temps daily et weekly mais sans la programmation et j ai une fenêtre qui apparait pour me prévenir que c est impossibleest-ce que l on pourrait m’aider ? merci beaucouphello
i would like to create in proscreener on 2 time units daily and weekly but without the programming and I have a window that appears to warn me that it is impossible
could someone help me? thank you very much
01/10/2025 at 12:25 AM #242360Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums
Thanks 🙂
02/05/2025 at 5:06 PM #243490Hello everyone,
I’m trying to go long when RSI[2] < 10 on the Daily chart, and exit when the index on the 15-minute chart closes above the entry day high. I’ve tried several scripts but can’t seem to get it to work. Here’s one of my attempts…anyone see what’s wrong? Thanks in advance.
indicator1 = RSI[2]
c1 = indicator1 < 10
c10 = close > entrydayhigh//conditiond to entry long position
TimeFrame(Daily, DEFAULT )
if not onmarket and c1 then
entrydayhigh = high
buy 1 contract AT MARKET
ENDIF
TimeFrame(15 minutes, UPDATEONCLOSE )
//conditions to exit longposition
if LONGONMARKET and c10 THEN
sell AT MARKET
endif02/05/2025 at 5:33 PM #243504Try this one:
RSI MTF123456789101112131415161718TimeFrame(Daily,Default)Once EntryDayHigh=0Indicator1=RSI[2](Close)C1=Indicator1<10If NOT OnMarket and C1 thenEntryDayHigh=HighBuy 1 contract at MarketEndIfTimeFrame(15 minutes,UpdateOnClose)If Close>EntryDayHigh thenSell at MarketEndIfGraph Indicator1Graph 102 users thanked author for this post.
02/05/2025 at 5:40 PM #24350602/05/2025 at 9:05 PM #243532Thank you very much 🙂
I am trading the US Tech 100 cash (Euro 1)
The last entry is at Open 3rd of February. Buy signal should be at Close 2rd of Februar. Exit is 3rd of February at 21445,6. I don’t understand. Isn not 2rd of February EntryDay, and High 21068,1? Therefore the exit signal should be at the first 15 minutes bar ending higher than 21068,1? What am I missing?
02/05/2025 at 9:58 PM #243533Hi,
Your code is read at the “Close” of the bar, and any “Market orders” are executed at the “Open” of the next bar…
February 2nd falls on a Sunday, and the market opens at midnight 00:00:00 (the start of Monday, February 3rd). The buy condition is “true” at 00:00:00, and since we use “market orders,” they are executed at the “Open” of the next bar…
The same applies to closing the order: the code is read at the “Close” of the bar, and any “Market orders” are executed at the “Open” of the next bar…1 user thanked author for this post.
02/06/2025 at 8:40 AM #243542Thanks. Trying to clarify my question: EntryDayHigh is 21068,1. The first close is Level in the 15 min bar is at the bar starting 3rd of Feb at time 090000, but the actual xit is at 214456,6 at time 214500…How come the exiy is not at the bar starting 091500 (at open a the first bar after the sell signal)?
02/06/2025 at 9:30 AM #243543If you want to use the “High” of the 15 minute bar, it must also be under “TimeFrame(15 minutes,UpdateOnClose)”, currently it is under the daily timeframe…
RSI MTF1234567891011121314151617TimeFrame(Daily,Default)Indicator1=RSI[2](Close)C1=Indicator1<10TimeFrame(15 minutes,UpdateOnClose)If NOT OnMarket and C1 thenEntryDayHigh=HighBuy 1 contract at MarketEndIfIf Close>EntryDayHigh thenSell at MarketEndIfGraph Indicator1Graph 10GraphOnPrice EntryDayHigh -
AuthorPosts