NexusFi: Find Your Edge


Home Menu

 





pressione del book


Discussion in Italian Traders

Updated
      Top Posters
    1. looks_one bomberone1 with 3 posts (0 thanks)
    2. looks_two Emanuele67 with 3 posts (0 thanks)
    3. looks_3 placcio with 2 posts (3 thanks)
    4. looks_4 peverell with 2 posts (0 thanks)
    1. trending_up 16,650 views
    2. thumb_up 8 thanks given
    3. group 14 followers
    1. forum 23 posts
    2. attach_file 1 attachments




 
Search this Thread

pressione del book

  #1 (permalink)
 placcio 
bologna italy
 
Experience: Intermediate
Platform: multicharts
Broker: berkeley
Trading: ftsemib future
Posts: 7 since Jan 2011
Thanks Given: 1
Thanks Received: 6

Ciao a tutti, qulcuno di voi sa come costruire l'indicatore pressione del book in easylanguage?

In sostanza si sottraggono le quantita' scambiate in bid dalle quantita' scambiate in ask. In tal modo si riesce a verificare se una salita dei prezzi e' accompagnata effettivamente da volumi in acquisto e si puo' quindi considerare sana.

Grazie in aticipo.


Buon trading!

Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
Traders Hideout
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 
LukeGeniol's Avatar
 LukeGeniol 
Italy (IT) Italy
 
Experience: Advanced
Platform: ATAS, R|Trader, NT8
Broker: Rithmic
Trading: CL, Brent, GC, TF
Frequency: Daily
Duration: Minutes
Posts: 1,499 since Apr 2010
Thanks Given: 408
Thanks Received: 985

@placcio, dal quel che so io non è ancora possibile usare il bid and ask volume con Multicharts per costruire degli indicatori come il cumulative delta (credo ci stiano lavorando), al quale penso che tu ti riferisca, se vuoi puoi usare Ninjatrader con il GomRecorder e i vari indicatori come GomCD, non so se hai già letto qualcosa in merito qui sul sito, ma credo che siano proprio quello che tu cerchi, altrimenti ci sono altre piattaforme che dispongono di questi indicatori.

Take your Pips, go out and Live.
Luke.
Reply With Quote
Thanked by:
  #3 (permalink)
 placcio 
bologna italy
 
Experience: Intermediate
Platform: multicharts
Broker: berkeley
Trading: ftsemib future
Posts: 7 since Jan 2011
Thanks Given: 1
Thanks Received: 6


Esiste gia' in MC (ultima versione).
Non sapevo si chiamasse cosi!

Se a qualcuno interessa ecco la formula:

inputs:
UpColor(darkgreen),
DownColor(red),
MaxBlock(9999),
MinBlock(0),
ResetDeltaEachBar(0);

variables:
MyVol(0),
Block(0),
color(yellow),
firstrunthrough(true),
intrabarpersistMyCurrentBar(0),
intrabarpersistVolTmp(0),
intrabarpersistDeltac(0),
intrabarpersistDeltaH(0),
intrabarpersistDeltaL(0),
intrabarpersistDeltaO(0);

iffirstrunthroughthenbegin// We need to do this in case indicator starts mid bar
Voltmp=Iff(BarType<2,Ticks,Volume);
firstrunthrough=False;
end;

ifLastBarOnChartthenbegin
ifCurrentBar>MyCurrentBarthenbegin
VolTmp=0;
MyCurrentBar=CurrentBar;
ifResetDeltaEachbar=1thenDeltac=0;
DeltaO=Deltac;
DeltaH=Deltac;
DeltaL=Deltac;
end;
MyVol=Iff(BarType<2,Ticks,Volume);
Block=Myvol-VolTmp;
if(Block>=MinBlock)and(Block<=MaxBlock)then
ifClose<=InsideBidthen
Deltac=Deltac-MyVol+VolTmp
elseifClose>=InsideAskthen
Deltac=Deltac+MyVol-VolTmp;
VolTmp=MyVol;
 

DeltaH=maxlist(DeltaH,Deltac);
DeltaL=minlist(DeltaL,Deltac);


ifDeltac<=Deltal[1]then
color=DownColor
else
ifDeltac>=Deltah[1]then
color=UpColor
else
color=color[1];

plot1(DeltaO,"DO",color);
Plot2(DeltaH,"DH",color);
Plot3(DeltaL,"DL",color);
plot4(Deltac,"DC",color);
end;

Started this thread Reply With Quote
Thanked by:
  #4 (permalink)
 viki 
italy
 
Experience: Intermediate
Platform: tradestation
Broker: tradestation
Trading: fesx, es
Posts: 14 since Dec 2009
Thanks Given: 1
Thanks Received: 7

Al di là del nome :-)
ti posso consigliare di controllare la 'consistenza'
dell'indicatore in multichart (non é solo una questione di
codice ,ma anche di datafeed e come ti arrivano i trades ed
il Bid e L'ask e come questi elementi sono sincronizzati tra loro)

Un saluto
Vit

Reply With Quote
  #5 (permalink)
 proton242 
Italy
 
Experience: Beginner
Platform: MultiCharts
Posts: 10 since Aug 2010
Thanks Given: 10
Thanks Received: 1

Ciao ragazzi, ho provato a compilare la formula ma mi resituisce un errore:

Please wait ....
------ Compiled with error(s): ------
Unrecognized element: 1t

errLine 29, errColumn 20, errLineEnd 29, errColumnEnd 20
causal study: (Function)

qualcuno ha lo stesso problema?

Reply With Quote
  #6 (permalink)
 
redratsal's Avatar
 redratsal 
Milan (I)
 
Experience: Advanced
Platform: Ninjatrader
Broker: Kinetick
Trading: FDAX,6E,CL,YM,NQ,ES
Posts: 1,648 since Oct 2010
Thanks Given: 1,215
Thanks Received: 2,090


proton242 View Post
Ciao ragazzi, ho provato a compilare la formula ma mi resituisce un errore:

Please wait ....
------ Compiled with error(s): ------
Unrecognized element: 1t

errLine 29, errColumn 20, errLineEnd 29, errColumnEnd 20
causal study: (Function)

qualcuno ha lo stesso problema?

Se ti referisci alla formula di placcio e vuoi che riceva un messaggio della tua richiesta devi usare il formato @placcio. Non utilizzo MC quindi non posso esserti d'aiuto

Visit my NexusFi Trade Journal Reply With Quote
  #7 (permalink)
 crazybears 
Alesia E.U.
 
Experience: Intermediate
Platform: Sierra chart
Trading: Futures
Posts: 168 since Feb 2011
Thanks Given: 146
Thanks Received: 115


proton242 View Post
Ciao ragazzi, ho provato a compilare la formula ma mi resituisce un errore:

Please wait ....
------ Compiled with error(s): ------
Unrecognized element: 1t

errLine 29, errColumn 20, errLineEnd 29, errColumnEnd 20
causal study: (Function)

qualcuno ha lo stesso problema?

Ciao
mhmhh strano a me funziona , sei sicuro di aver copiato tutto bene ??
prova questa

Attached Files
Elite Membership required to download: book pressure.pla
Reply With Quote
Thanked by:
  #8 (permalink)
 proton242 
Italy
 
Experience: Beginner
Platform: MultiCharts
Posts: 10 since Aug 2010
Thanks Given: 10
Thanks Received: 1

grazie crazybears, con il tuo file funziona... neanche il copia incolla mi riesce!

Reply With Quote
  #9 (permalink)
 thedriver 
italy
 
Experience: Intermediate
Platform: NinjaTrader,tradestation
Posts: 3 since Nov 2009
Thanks Given: 5
Thanks Received: 0


crazybears View Post
Ciao
mhmhh strano a me funziona , sei sicuro di aver copiato tutto bene ??
prova questa


Reply With Quote
  #10 (permalink)
 bomberone1 
London
 
Experience: Beginner
Platform: MultiCharts
Posts: 277 since Nov 2010
Thanks Given: 14
Thanks Received: 29


Ciao a tutti, finalmente un po di Italiani :-).
Sapete quanto ho cercato in giro per la rete la pressione del book? Ma da dove lo avete tirato fuori?

Il cvd è la pressione del book?

Avete per caso anche questi:
-Accelerazione Volumetrica
-Istogrammi Prezzo Volumi
-Volume Control Panel
-Volume Force oscillator

Facciamo un post con una raqccolta anche sul sito di invstire oggi o finanza onlie?
Ciao

Reply With Quote




Last Updated on December 23, 2019


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts