読み取り専用

フォーラムは現在、読み取り専用のアーカイブとなっています。.

バグ報告やプラットフォームに関する質問はこちら → [email protected]

私たちのコミュニティはDiscordとYouTubeで活動しています。ぜひ参加してください!

ご参加ください Discord YouTube

シグナル矢印を価格バーに近づける方法

1件の返信

マレリエア

購読者、bbp_participant、コミュニティ、6件の返信。.

プロフィールを表示

12年前 #112012

hi Support or anyone else that can help,

 

in the signal indy fisher__1 i have uploaded please can some kind sole supply a code

snippet to allow me to move the direction change arrows closer to the price bars.

 

i prefer the direction change to be right next to the top/bottom of the price bars.

i want to move the arrows closer but nothing i try seems to make any difference.

 

many thanks in advance if anyone can help with a code snippet.

 

乾杯

 

m 🙂

0

マーク・フリック

管理者、sq-ultimate、2件の返信.

プロフィールを表示

12年前 #123914

こんにちは,

 

I assume you are talking about Signal Indicator, right?

It can be customized by editing the EA code.

 

The distance of the point from candle is controlled by atrOffset. You can look at your code for atrOffset, it is computed like:

atrOffset = 0.5 * iATR(NULL, 0, 10, 1);

 

If you’ll change it for example to

atrOffset = 0.1 * iATR(NULL, 0, 10, 1);

 
then the signal points will be closer to candles.
 
 
If you are talking about Draw Up Arrow/Draw Down Arrow actions then these can be edited in functions 
void sqDrawUpArrow(int shift) 
void sqDrawDownArrow(int shift) 
 
YOu can control the distance by changing the values 
-20*Point
または 
+140*Point

マーク
StrategyQuantアーキテクト

0

1件の返信を表示中 - 1 - 1件目 (全1件中)