Search found 22 matches

by lopper70
03 Feb 2017
Forum: MultiCharts
Topic: Chart custom similar Renko
Replies: 1
Views: 805

Chart custom similar Renko

Hello, is would be possible to create a similar Renko chart, with a Power language Code? example, if I setting principal movement 20 point and switching movement 10.... the bar is now "live" in the 20 point range (if < 20 point this is live bar, timeless!) if the range is => 20 point and to reverse ...
by lopper70
30 Jul 2016
Forum: MultiCharts
Topic: indicator that "records" last signal [SOLVED]
Replies: 3
Views: 1570

Re: indicator that "records" last signal [SOLVED]

thanks, I managed to create this... inputs: BollingerPrice( Close of data2 ), TestPriceUBand( Close of data2), TestPriceLBand( Close of data2 ), Length( 20 ), NumDevsUp( 2 ), NumDevsDn( -2 ), price (close of data1); variables: var0( 0 of data2 ), var1( 0 of data2), var2( 0 of data2), var3( 0 of data...
by lopper70
28 Jul 2016
Forum: MultiCharts
Topic: indicator that "records" last signal [SOLVED]
Replies: 3
Views: 1570

indicator that "records" last signal [SOLVED]

Hello (sorry my english) it's possibile create this indicator?... I create chart with DATA1 the 1 second chart line (or tick by tick, one contract, ecc...) DATA2 with same instrument but 300 second chart I want to create one strategy in the DATA2 chart, if it's true I want color DATA1 chart line exa...
by lopper70
13 Nov 2015
Forum: MultiCharts
Topic: Plot study from chart1 to chart2
Replies: 1
Views: 1190

Plot study from chart1 to chart2

Hello, I want plot study from chart1 to chart2, you can do it? example....I create an indicator in chart1, time frame setting 500 contract bar (or other time frame, and I minimize this chart). in chart2 I setting time frame 15 minutes (I see only this chart in workspace) and want to import, or plott...
by lopper70
03 Feb 2015
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

yes, now I have also tried Playback Date, but not send orders. I also tried with two different brokers that use, if I put the orders manually all is well, if I enable this TS does not send orders! this code does not use it to trade, it is only a small part to solve this code limit orders, my wish is...
by lopper70
30 Jan 2015
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

thanks, maybe I'm wrong some setting, even with the code that you have shown me the orders are not placed....the steps that I have: 1- insert code in "signals" and compile, of course 2- I open the chart of the instrument and active trading mode (I try manual orders, it's ok) 3- I insert the signal i...
by lopper70
23 Jan 2015
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

sorry, I had not realized before! I modified Lasto to Close, but I can not send to the order... I try with a base code, to proceed step by step. inputs: pointdiff (20), order (false); variables: barclose (0), differencedown (0); barclose = close; differencedown = barclose - pointdiff; if order=true ...
by lopper70
14 Jan 2015
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

sorry, in dictionary of multicharts I see only " Last = for will return the price of the last trade " ( I want to use it )....in basic manual, in various forum or web search I find no other references to the use of last price! where can I find information on its use, please? or should I use another ...
by lopper70
12 Jan 2015
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

excuse my delay, but I've had a very busy and I could not continue in this study! I tried to write a bit of code, starting with the first step...indicating that for now only have to enter a limit order, this is code: inputs: pointdiff (20), order (false); variables: lastprice (0), differencedown (0)...
by lopper70
21 Nov 2014
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

ok, now I think about it for well over the weekend and see if I can generate a good code!
thanks for the information how to think
by lopper70
21 Nov 2014
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

Re: move my limit order to last price and condition

ok, then I think we can do without any problems. please let me explain how you can specify the initial code (for now without further conditions), with these steps: 1- I have the last price of the security 2- enter a limit order 20 points below this last price 3- if the last price becomes less than o...
by lopper70
21 Nov 2014
Forum: MultiCharts
Topic: move my limit order to last price and condition
Replies: 17
Views: 4343

move my limit order to last price and condition

I want to try something a little bit special, but I do not know if it is possible to achieve and how! for now I just want to do some simple tests and then put this code in more complex codes, so I start with a simple request to find out if it is possible to be realized or not. for now I want to make...
by lopper70
29 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

sorry I thought I had to be taken away! Now put it back and I see the horizontal lines buy and sell. remain visible earlier texts, do not delete them ... it seems like not read the code TL_Delete (HITxt[1] ); I do not understand why...if I delete this code it remains completely unchanged in the char...
by lopper70
29 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

now I get this result on the chart [img] http://gyazo.com/5df3e34a9b1b8585fd646f16190d937c [/img] but I want to get this result (This is the first code I posted, but when there is a new signal deletes the old and the new can not be see) [img] http://gyazo.com/3fff9e027922145951f86ca99396544a [/img]
by lopper70
29 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

instead of if MyRSI crosses under OverSold then try: if MyRSI < OverSold and MyRSI[1] >= OverSold then I tried, but unfortunately it does not change anything...remain visible signals past and do not see the horizontal line. This is the actual code used inputs: Price (Close), RSILength( 14 ), OverSo...
by lopper70
24 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

sorry I did not understand! I modified the old code, but however so I do not see the horizontal lines now, and the old text remains visible, is not deleted! maybe there are other errors in the my code This is the current code: inputs: Price (Close), RSILength( 14 ), OverSold( 30 ), OverBought( 70 ),...
by lopper70
23 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

:: I tried to use the new indication of code, but unfortunately it does not work so often, and when a new signal disappears the old, but I do not see the new. Please post your re-worked code for further debugging. Here is the modified code, I also left the old code to see there is the same problem ...
by lopper70
20 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

ps: [FAQ] How to Post Codes (that people can read) https://www.multicharts.com/discussion/viewtopic.php?f=16&t=11713 sorry, you're right. I edited my first post with putting the window code! I tried to use the new indication of code, but unfortunately it does not work so often, and when a new signa...
by lopper70
20 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

Unfortunately, when there is a new signal, it delete the previous line and txt, but do not show the new line and txt!
I have to show for it or turn off / on status indicator in all charts....or re-compil code!
what can be the problem?
by lopper70
17 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Re: Terend Line and Txt in Chart [SOLVED]

Not sure if this is one of the problems but you need to change the following line of code: if OldTXTHigh <> -1 then Value4 = tl_delete(OldTXTHigh); ... to ... if OldTXTHigh <> -1 then Value4 = text_delete(OldTXTHigh); aahhhhh!!!!!! I never noticed that mistake! well I checked the code many times an...
by lopper70
17 Oct 2014
Forum: MultiCharts
Topic: Terend Line and Txt in Chart [SOLVED]
Replies: 16
Views: 3619

Terend Line and Txt in Chart [SOLVED]

hello everyone, I have just joined the forum, but I read in many months, since using MC (Version 8.0), I have learned many things sorry for my english! I'm trying to create me some good visual indicators and I got a good point, but now I can not improve it. I want to simply create a horizontal line ...

Go to advanced search