Top Bottom indicator modifications

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #222737 quote
    majide
    Participant
    New

    Bonjour,

    Je vous serais reconnaissant de modifier l’indicateur Top Bottom indicator en permettant l’affichage des signaux sur le chart dans la version 12 de PRT (sans les lignes et sans indicateur placé sous le graphique) avec une flèche Sell au dessus du top et une flèche Buy au-dessous du bottom et d’apporter toutes les améliorations que vous souhaiteriez.

    Merci encore,

    Bien à vous,

    Majez

    Top-Bottom-indicator-700x438-1.png Top-Bottom-indicator-700x438-1.png
    #222752 quote
    jacquesgermain
    Participant
    Senior

    ///bonjour voici ci après

    //PRC_Top Bottom | indicator
    //08.10.2023

    // — settings
    per = 14 //Bottom Period
    per2 = 14 //Top Period
    // — end of settings

    loc = low < lowest[per](low[1]) and low <= lowest[per](low[per])
    if loc then
    locstart=barindex
    endif
    bottoma = barindex-locstart

    loc2 = high > highest[per2](high[1]) and high >= highest[per2](high[per2])
    if loc2 then
    loc2start=barindex
    endif
    topa = barindex-loc2start

    iBuy = bottoma crosses over topa
    iSell = bottoma crosses under topa

    if iBuy then
    drawtext(“Buy”,barindex,low-4,dialog,bold,14) coloured(0,128,0)
    endif
    if iSell then
    drawtext(“Sell”,barindex,high-4, dialog,bold,14) coloured(255,0,0)
    endif
    return

    #222761 quote
    majide
    Participant
    New

    Bonjour Monsieur,

    Merci beaucoup pour votre excellent travail.

    Bien à vous,

    Majez

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Top Bottom indicator modifications


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
majide @majide Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by majide
2 years, 4 months ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 10/21/2023
Status: Active
Attachments: 1 files
Logo Logo
Loading...