m.mohammadreza.m.s
Topics
Replies
m.mohammadreza.m.s
11 Jan 2021, 14:38
RE:
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
You need to program your own indicator that will display the RSI as a histogram. See this one for example.
Best Regards,
Panagiotis
hi panagiotis,thanks for the help,i mean show rsi values as candesticks, with OHLC values,you mean for that also i have to display values as a histogram?
m.mohammadreza.m.s
26 Nov 2020, 11:42
( Updated at: 21 Dec 2023, 09:22 )
RE: i fixed it,thanks again dear panagiotis
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
Check your log. You get exceptions
Best Regards,
Panagiotis
m.mohammadreza.m.s
26 Nov 2020, 10:13
( Updated at: 21 Dec 2023, 09:22 )
RE: thank you panagiotis,can you help with solution?i couldnt find a way to avoid that
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
Check your log. You get exceptions
Best Regards,
Panagiotis
m.mohammadreza.m.s
26 Oct 2020, 16:46
RE: thank you very much for your help.
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
I cannot write the code for you but I can provide you with an example. See below
Chart.DrawRectangle("fast", Bars.Count - 3, maxfast, Bars.Count - 1, minfast, Color.Red);
Best Regards,
Panagiotis
m.mohammadreza.m.s
26 Oct 2020, 15:21
if someone writes the code,that would be the best,but an example can solve the problem too,thanks in advance
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
What do you need exactly? An example of how to draw a rectangle or somebody to write the complete code for you?
Best Regards,
Panagiotis
m.mohammadreza.m.s
26 Oct 2020, 13:15
( Updated at: 21 Dec 2023, 09:22 )
RE: something like this
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
The below lines of code do not make much sense. I am not sure what are you trying to do
public ChartRectangle DrawRectangle(string Fast, int index1, double minfast, int index2, double maxfast, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines); public ChartRectangle DrawRectangle(string Medium, int index1, double minmedium, int index3, double maxmedium, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines); public ChartRectangle DrawRectangle(string Slow, int index1, double minslow, int index4, double maxslow, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines);
Best Regards,
Panagiotis
m.mohammadreza.m.s
26 Oct 2020, 09:10
RE: i am trying to draw 3 rectangles on the last candle which 1st is 9 candles wide and its height is the distance from lowest price of the 9 candles to the highest price,2nd is 26 candles wide and the height is the same but for 26 candles and 3rd for 52.
PanagiotisCharalampous said:
Hi m.mohammadreza.m.s,
The below lines of code do not make much sense. I am not sure what are you trying to do
public ChartRectangle DrawRectangle(string Fast, int index1, double minfast, int index2, double maxfast, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines); public ChartRectangle DrawRectangle(string Medium, int index1, double minmedium, int index3, double maxmedium, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines); public ChartRectangle DrawRectangle(string Slow, int index1, double minslow, int index4, double maxslow, Color = Color.BlueViolet, int thickness = 1, LineStyle = LineStyle.Lines);
Best Regards,
Panagiotis
m.mohammadreza.m.s
12 Jan 2021, 12:21 ( Updated at: 12 Jan 2021, 12:49 )
RE:
PanagiotisCharalampous said:
you're welcome
since I'm not a pro in calgo, is there anybody who might be able to help me with this?