I am trying to Change the position of the year inside my bibliography. Here is a MWE
%%%%% Dokumentenklasse mit verschiedenen Attributen
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{csquotes}
\usepackage
[citestyle=authoryear-icomp,
bibstyle=numeric, sorting=nyt ,maxbibnames=9,maxcitenames=2,uniquelist=false, backend=biber,
doi=false,isbn=false,url=false,
uniquename=false, date=year, giveninits=true]
{biblatex}
\usepackage{filecontents}
\DeclareNameAlias{sortname}{last-first}
\DeclareNameAlias{default}{last-first}
\DefineBibliographyStrings{ngerman}{andothers={et\addabbrvspace al\adddot}}
%Remove Dot and Add Space
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
% \setunit*{\adddot}% DELETED
% \setunit*{\addnbspace}% NEW (optional); there's also \addnbthinspace
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\DeclareFieldFormat[article]{number}{\mkbibparens{#1}}
\renewbibmacro{in:}{}
\begin{filecontents}{\jobname.bib}
@article{cgood1980,
Author = {Charles Goodwin},
Journal = {Sociological Inquiry},
Number = {3-4},
Pages = {272-302},
Title = {Restarts, pauses, and the achievement of a state of mutual gaze at turn-beginning},
Volume = 50,
Year = 1980,
}
@article{mgood1980,
Author = {Marjorie Harness Goodwin},
Journal = {Sociological Inquiry},
Pages = {303-317},
Title = {Processes of mutual monitoring implicated in the production of description sequences},
Volume = 50,
Year = 1980,
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\parencite{cgood1980,mgood1980}
\printbibliography
\end{document}
The current year is behind the title, but it should be listed after the authors and without brackets. I tried several methods of previous oosts, but without sucess.

citestyle=authoryear-icomp,a numeric bibliography makes little to no sense since the numbers have no connection to anything useful in the document. – moewe Aug 20 '18 at 19:53