Search found 22 matches

by moreno
03 Nov 2021
Forum: MultiCharts
Topic: Last price marker line on TPO chart
Replies: 1
Views: 351

Last price marker line on TPO chart

Hi
Does someone have a clue how to draw the Last Price Marker Line for a TPO chart?
I couldn't find the feature that exists for other charts...

Moreno
by moreno
01 Sep 2021
Forum: MultiCharts
Topic: plot yesterdays close [SOLVED]
Replies: 7
Views: 1505

Re: plot yesterdays close [SOLVED]

Thanks, TJ!
but...it seems to be good logic... but the script above doesn't work as expected.
the line is yellow in the 1m chart of ES.(attached)
the vertical part of it is day change. the line doesn't meet yesterday's close...

Image
by moreno
01 Sep 2021
Forum: MultiCharts
Topic: plot yesterdays close [SOLVED]
Replies: 7
Views: 1505

Re: plot yesterdays close [SOLVED]

just like the indicator << Day Open-Hi-Lo Lines >>
I wish to draw yesterday's close line on today's chart as a reference.

thanks
Moreno
by moreno
01 Sep 2021
Forum: MultiCharts
Topic: plot yesterdays close [SOLVED]
Replies: 7
Views: 1505

plot yesterdays close [SOLVED]

Hi,
sounds silly but somehow didn't manage to plot yesterday's close line.
what is the relevant indicator/script I should use?

Moreno
by moreno
06 May 2021
Forum: MultiCharts
Topic: number of contracts traded per price [SOLVED]
Replies: 1
Views: 451

Re: number of contracts traded per price [SOLVED]

Got It!
volume profile - you must expand the price scale to the max in order to see the numbers.
by moreno
05 May 2021
Forum: MultiCharts
Topic: number of contracts traded per price [SOLVED]
Replies: 1
Views: 451

number of contracts traded per price [SOLVED]

Hi friends
Does someone know a script or indicator showing the number of contracts traded per price?
it seems that the market profile doesn't show this ...

Moreno
by moreno
22 Apr 2021
Forum: MultiCharts
Topic: cumulative tick [SOLVED]
Replies: 1
Views: 461

cumulative tick [SOLVED]

Hi friends
Does someone know of the cumulative tick indicator in MC?
I can't find it...
by moreno
23 Oct 2020
Forum: MultiCharts
Topic: execute immediately while condition meet [SOLVED]
Replies: 1
Views: 562

execute immediately while condition meet [SOLVED]

Hi,
Buy/Sell orders timed at the close of the bar.
I have searched for a way to execute buy/sell market orders immediately after the condition is met and not waiting for the close of the bar.
does someone has the answer to this?
using tick data.

thanks

Moreno
by moreno
08 Oct 2020
Forum: MultiCharts
Topic: Divergence Strategy works intermittent
Replies: 3
Views: 909

Re: Divergence Strategy works intermittent

somehow it doesn't catch all the setups. (...) Is coding the problem? It looks like your code uses a lookback period that varies per bar (with the `idx` variable). Doesn't the code need to lookback the same number of bars on each bar? That way you get a static 'lookback window' in which to look for...
by moreno
07 Oct 2020
Forum: MultiCharts
Topic: Divergence Strategy works intermittent
Replies: 3
Views: 909

Divergence Strategy works intermittent

Hi friends I have written A divergence strategy long entries but somehow it doesn't catch all the setups. using Renko/regular/kase bars. my thoughts (with no answer right now) for the problem: does Renko/kase bar charts work for strategies different from regular charts? Is coding the problem? what i...
by moreno
05 Oct 2020
Forum: MultiCharts
Topic: avoid multiple entries [SOLVED]
Replies: 5
Views: 1493

Re: avoid multiple entries [SOLVED]

Thanks, Mydesign, but it didn't work. the challenge here because of strategy properties/position limits uses "currently held position" situation while my orders filled quickly and the market position turns flat ("0") before the solutions above refer. BUT you gave me the idea I couldn't think of (it ...
by moreno
04 Oct 2020
Forum: MultiCharts
Topic: avoid multiple entries [SOLVED]
Replies: 5
Views: 1493

Re: avoid multiple entries [SOLVED]

Thanks sptrader.
I tried it (""if marketposition = 0 and condition2 then buy"") and still multiple entries.
I suppose that is because after I close each position (take small profit) then "marketposition" (data1) turns 0 again while the condition based on data2 is still true.
and order repeats...
by moreno
03 Oct 2020
Forum: MultiCharts
Topic: avoid multiple entries [SOLVED]
Replies: 5
Views: 1493

avoid multiple entries [SOLVED]

Hi friends, I have searched for this subject in the forum but didn't manage to solve this riddle...: using two-time frames where the entry condition provided by the second, which makes usually several entries, but I want to use just the first entry and ignore others from that signal. all this of cou...
by moreno
09 Jul 2020
Forum: MultiCharts
Topic: data1 order based on data2 trigger [SOLVED]
Replies: 2
Views: 1010

Re: data1 order based on data2 trigger [SOLVED]

thanks Mydesign
the code

Code: Select all

Price2 = Close Data2 ;
works great!
by moreno
09 Jul 2020
Forum: MultiCharts
Topic: data1 order based on data2 trigger [SOLVED]
Replies: 2
Views: 1010

data1 order based on data2 trigger [SOLVED]

Hi, It looks simple but something doesn't work for me while trying to execute orders in chart1 (data1) based on chart2 (data2) trigger condition... the trigger/condition is 3MA cross on chart2, if condition met sellshort chart1. NOTHING HAPPENS, the condition doest met... while the reference indicat...
by moreno
06 Jul 2020
Forum: MultiCharts
Topic: inaccurate entries/exits [SOLVED]
Replies: 7
Views: 1685

Re: inaccurate entries/exits [SOLVED]

just to close this session I found after recommendation above: 1. defining a stop level (price) makes more accurate trades then calculating openpositionprofit function. (in my case) 2. "next bar at market" order is the way to trade candles on-line, "this bar at close" for backtests. 3. "IntrabarOrde...
by moreno
02 Jul 2020
Forum: MultiCharts
Topic: inaccurate entries/exits [SOLVED]
Replies: 7
Views: 1685

Re: inaccurate entries/exits [SOLVED]

IB relevant trades table here -
recovery.png
(157.23 KiB) Not downloaded yet
by moreno
02 Jul 2020
Forum: MultiCharts
Topic: inaccurate entries/exits [SOLVED]
Replies: 7
Views: 1685

Re: inaccurate entries/exits [SOLVED]

Guys thanks for your wise reference, the phenomena still occur with less slippage but I have noticed something...I'll try to explain - it seems that the system refers to the new amount of contracts (2 contracts, in the take profit/recovery strategy) instead of the first original long order (buy 1 c...
by moreno
01 Jul 2020
Forum: MultiCharts
Topic: inaccurate entries/exits [SOLVED]
Replies: 7
Views: 1685

inaccurate entries/exits [SOLVED]

hi, I have one simple strategy based on stochastic for long entries, one strategy for position loss management/exits. both work together on the same instrument MES. IB DEMO mode. most of the exits/new entries are not accurate with too much slippage although not volatile market. using MES future regu...
by moreno
30 Jun 2020
Forum: MultiCharts
Topic: position recovery/take profit [SOLVED]
Replies: 3
Views: 907

Re: position recovery/take profit [SOLVED]

thanks, TJ!
by moreno
29 Jun 2020
Forum: MultiCharts
Topic: position recovery/take profit [SOLVED]
Replies: 3
Views: 907

position recovery/take profit [SOLVED]

Hi, trying to build a recovery signal for losing position. when an unrealized loss in an open position (1 contract long) reach -50 since it was entered then sell 2 contracts (reverse position). both entry signal and recovery/take profit signal runs at the same time. i wrote the code below but it doe...
by moreno
15 Apr 2020
Forum: MultiCharts
Topic: multi data strategy [SOLVED]
Replies: 2
Views: 1052

multi data strategy [SOLVED]

Hi all, trying to build a multi time frame strategy with RSI. somehow the data2 doesn't act as it should be. data1 is ok. that's mean if I try the strategy with only one of the time frames, just data1 (main chart) bring accurate results. running only data2 show weird results' and both data1+data2 (a...

Go to advanced search