This follows the document you uploaded. A few other guides I found on the web had different guidelines and also posed as 'BIN norm'. Note that your guide has inconsistencies between text and example. Furthermore you are missing many important entry types.
This is a start
\documentclass[dutch]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=authortitle, giveninits=true, uniquename=init]{biblatex} % this is important
\addbibresource{biblatex-examples.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{daras,
author = {Daras, K. and Dhaenens, J. J.},
title = {Rapporteren: een levenswerk},
edition = {3},
publisher = {Uitgeverij Jozefa},
location = {Brugge},
date = {2010},
pagetotal = {513},
}
\end{filecontents}
\addbibresource{\jobname.bib}
%% the code from here on is important
%% BIN style - START
\DeclareNameAlias{sortname}{family-given}
\renewcommand*{\finalnamedelim}{\multinamedelim}
\renewcommand*{\newunitpunct}{\addcomma\space}
\renewbibmacro*{title}{%
\ifboolexpr{
test {\iffieldundef{title}}
and
test {\iffieldundef{subtitle}}
}
{}
{\printtext[title]{%
\printfield[titlecase]{title}%
\setunit{\subtitlepunct}%
\printfield[titlecase]{subtitle}}%
\newunit}%
\printfield{titleaddon}
\printunit{\addperiod\space}}
\renewbibmacro*{in:}{%
\ifentrytype{article}
{}
{\printtext{\bibstring{in}\intitlepunct}}}
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\setunit*{\addcomma\space}%
\iffieldundef{series}
{}
{\newunit
\printfield{series}%
\setunit{\addcomma\space}}%
\usebibmacro{volume+number+eid}%
\setunit{\addcomma\space}%
\usebibmacro{issue+date}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
\DeclareFieldFormat[article,periodical]{volume}{\bibstring{jourvol}~#1}
\DeclareFieldFormat[article,periodical]{number}{\bibstring{number}~#1}
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\setunit{\addcomma\space}%
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\renewbibmacro*{issue+date}{%
\printfield{issue}%
\setunit*{\addspace}%
\usebibmacro{date}%
\newunit}
\newbibmacro*{puborginst+location+date}[1]{%
\printlist{publisher}%
\setunit*{\addcomma\space}%
\printlist{location}%
\setunit*{\addcomma\space}%
\usebibmacro{date}%
\newunit}
\renewbibmacro*{publisher+location+date}{\usebibmacro{puborginst+location+date}{publisher}}
\renewbibmacro*{institution+location+date}{\usebibmacro{puborginst+location+date}{institution}}
\renewbibmacro*{organization+location+date}{\usebibmacro{puborginst+location+date}{organization}}
%% ... BIN style END ...
\begin{document}
\cite{sigfridsson,daras}
\printbibliography
\end{document}

biblatex, starting from a biblatex style close to what you want, saybiblatex-apa, and patching it. – Bernard Jun 09 '17 at 21:17bibtexandbiblatexbut they use completely different style definitions. If nothing exists,biblatexwould be easier. But it matters which you mean you need. – cfr Jun 10 '17 at 03:02